TP : Analyse de sentiments dans les critiques de films

Objectifs

  1. Représenter des données textuelles de manière simple.
  2. Utiliser un modèle d'apprentissage statistique basique pour une tâche d'analyse de sentiments.
  3. Tenter d'améliorer ces représentations avec des outils venus du traitement automatique du langage
  4. Comparer les résultats avec une méthode coûteuse état-de-l'art: fine-tuner un modèle Bert.

Dépendances nécessaires

Pour les objectifs 2. et 3., on aura besoin des packages suivants:

Les deux sont disponibles avec Anaconda: https://anaconda.org/anaconda/nltk et https://anaconda.org/anaconda/scikit-learn

Pour l'objectif 4., il faudra installer le package transformers: https://huggingface.co/transformers/index.html

In [1]:
import os.path as op
import re 
import numpy as np
import matplotlib.pyplot as plt
import gdown
In [2]:
!pip install transformers
Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/
Collecting transformers
  Downloading transformers-4.20.1-py3-none-any.whl (4.4 MB)
     |████████████████████████████████| 4.4 MB 5.1 MB/s 
Collecting pyyaml>=5.1
  Downloading PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (596 kB)
     |████████████████████████████████| 596 kB 71.1 MB/s 
Collecting huggingface-hub<1.0,>=0.1.0
  Downloading huggingface_hub-0.8.1-py3-none-any.whl (101 kB)
     |████████████████████████████████| 101 kB 13.0 MB/s 
Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers) (2.23.0)
Requirement already satisfied: packaging>=20.0 in /usr/local/lib/python3.7/dist-packages (from transformers) (21.3)
Requirement already satisfied: importlib-metadata in /usr/local/lib/python3.7/dist-packages (from transformers) (4.11.4)
Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers) (3.7.1)
Collecting tokenizers!=0.11.3,<0.13,>=0.11.1
  Downloading tokenizers-0.12.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (6.6 MB)
     |████████████████████████████████| 6.6 MB 55.8 MB/s 
Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (2022.6.2)
Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (1.21.6)
Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.7/dist-packages (from transformers) (4.64.0)
Requirement already satisfied: typing-extensions>=3.7.4.3 in /usr/local/lib/python3.7/dist-packages (from huggingface-hub<1.0,>=0.1.0->transformers) (4.1.1)
Requirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging>=20.0->transformers) (3.0.9)
Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata->transformers) (3.8.0)
Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2022.6.15)
Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2.10)
Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (1.24.3)
Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (3.0.4)
Installing collected packages: pyyaml, tokenizers, huggingface-hub, transformers
  Attempting uninstall: pyyaml
    Found existing installation: PyYAML 3.13
    Uninstalling PyYAML-3.13:
      Successfully uninstalled PyYAML-3.13
Successfully installed huggingface-hub-0.8.1 pyyaml-6.0 tokenizers-0.12.1 transformers-4.20.1
In [3]:
gdown.download("http://ai.stanford.edu/~amaas/data/sentiment/aclImdb_v1.tar.gz", output="aclImdb_v1.tar.gz", quiet=False)
!tar xzf /content/aclImdb_v1.tar.gz
Downloading...
From: http://ai.stanford.edu/~amaas/data/sentiment/aclImdb_v1.tar.gz
To: /content/aclImdb_v1.tar.gz
100%|██████████| 84.1M/84.1M [00:02<00:00, 34.9MB/s]

Charger les données

On récupère les données textuelles dans la variable train_texts;

On récupère les labels dans la variable $train_labels$: $0$ indique que la critique correspondante est négative tandis que $1$ qu'elle est positive.

In [4]:
from glob import glob
# We get the files from the path: ./data/imdb1/neg for negative reviews, and ./data/imdb1/pos for positive reviews
train_filenames_neg = sorted(glob(op.join('.', 'aclImdb', 'train', 'neg', '*.txt')))
train_filenames_pos = sorted(glob(op.join('.', 'aclImdb', 'train', 'pos', '*.txt')))

"""
test_filenames_neg = sorted(glob(op.join('.', 'aclImdb', 'test', 'neg', '*.txt')))
test_filenames_pos = sorted(glob(op.join('.', 'aclImdb', 'test', 'pos', '*.txt')))
"""

# Each files contains a review that consists in one line of text: we put this string in two lists, that we concatenate
train_texts_neg = [open(f, encoding="utf8").read() for f in train_filenames_neg]
train_texts_pos = [open(f, encoding="utf8").read() for f in train_filenames_pos]
train_texts = train_texts_neg + train_texts_pos

"""
test_texts_neg = [open(f, encoding="utf8").read() for f in test_filenames_neg]
test_texts_pos = [open(f, encoding="utf8").read() for f in test_filenames_pos]
test_texts = test_texts_neg + test_texts_pos
"""

# The first half of the elements of the list are string of negative reviews, and the second half positive ones
# We create the labels, as an array of [1,len(texts)], filled with 1, and change the first half to 0
train_labels = np.ones(len(train_texts), dtype=np.int)
train_labels[:len(train_texts_neg)] = 0.

"""
test_labels = np.ones(len(test_texts), dtype=np.int)
test_labels[:len(test_texts_neg)] = 0.
"""
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:24: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
Out[4]:
'\ntest_labels = np.ones(len(test_texts), dtype=np.int)\ntest_labels[:len(test_texts_neg)] = 0.\n'

Exemple de document:

In [5]:
open("./aclImdb/train/neg/0_3.txt", encoding="utf8").read()
Out[5]:
"Story of a man who has unnatural feelings for a pig. Starts out with a opening scene that is a terrific example of absurd comedy. A formal orchestra audience is turned into an insane, violent mob by the crazy chantings of it's singers. Unfortunately it stays absurd the WHOLE time with no general narrative eventually making it just too off putting. Even those from the era should be turned off. The cryptic dialogue would make Shakespeare seem easy to a third grader. On a technical level it's better than you might think with some good cinematography by future great Vilmos Zsigmond. Future stars Sally Kirkland and Frederic Forrest can be seen briefly."

Dans tout ce TP, l'impact de vos choix sur les résultats dépendra grandement de la quantité de données utilisée: essayez de faire varier le paramètre k dans l'encart suivant !

In [6]:
# This number of documents may be high for most computers: we can select a fraction of them (here, one in k)
# Use an even number to keep the same number of positive and negative reviews
k = 2
train_texts_reduced = train_texts[0::k]
train_labels_reduced = train_labels[0::k]

print('Nombre de documents:', len(train_texts_reduced))
Nombre de documents: 12500

On peut utiliser une fonction utilitaire de sklearn, train_test_split, pour la séparation des données en ensembles d'entraînement et de validation:

In [7]:
from sklearn.model_selection import train_test_split
In [8]:
train_texts_splt, val_texts, train_labels_splt, val_labels = train_test_split(train_texts_reduced, train_labels_reduced, test_size=.2)

Représentation adaptée des documents

Notre modèle, comme la plupart des modèles appliqués aux données textuelles, utilise les comptes d'occurences de mots dans un document. Ainsi, une manière très pratique de représenter un document est d'utiliser un vecteur "Bag-of-Words" (BoW), contenant les comptes de chaque mot (indifférement de leur ordre d'apparition) dans le document.

Si on considère l'ensemble de tous les mots apparaissant dans nos $T$ documents d'apprentissage, que l'on note $V$ (Vocabulaire), on peut créer un index, qui est une bijection associant à chaque mot $w$ un entier, qui sera sa position dans $V$.

Ainsi, pour un document extrait d'un ensemble de documents contenant $|V|$ mots différents, une représentation BoW sera un vecteur de taille $|V|$, dont la valeur à l'indice d'un mot $w$ sera son nombre d'occurences dans le document.

On peut utiliser la classe CountVectorizer de scikit-learn pour obtenir de telles représentations:

In [9]:
from sklearn.feature_extraction.text import CountVectorizer

Exemple d'utilisation:

In [10]:
corpus = ['I walked down down the boulevard',
          'I walked down the avenue',
          'I ran down the boulevard',
          'I walk down the city',
          'I walk down the the avenue']
vectorizer = CountVectorizer()

Bow = vectorizer.fit_transform(corpus)

print(vectorizer.get_feature_names())
Bow.toarray()
['avenue', 'boulevard', 'city', 'down', 'ran', 'the', 'walk', 'walked']
/usr/local/lib/python3.7/dist-packages/sklearn/utils/deprecation.py:87: FutureWarning: Function get_feature_names is deprecated; get_feature_names is deprecated in 1.0 and will be removed in 1.2. Please use get_feature_names_out instead.
  warnings.warn(msg, category=FutureWarning)
Out[10]:
array([[0, 1, 0, 2, 0, 1, 0, 1],
       [1, 0, 0, 1, 0, 1, 0, 1],
       [0, 1, 0, 1, 1, 1, 0, 0],
       [0, 0, 1, 1, 0, 1, 1, 0],
       [1, 0, 0, 1, 0, 2, 1, 0]])

Attention: vérifiez la mémoire que les représentations vont occuper (étant donné la façon dont elles sont construites). Quel argument de CountVectorizer permet d'éviter le problème ?

Pour gérer le problème de mémoire il est nécéssaire de diminuer la taille du vocabulaire.

Pour ce faire 2 arguments peuvent être utilisés:

  • max_features qui garde ajoute dans le vocabulaire les N mots les plus fréquents.

  • min_df qui ignore les mots dont la fréquence de document est strictement inférieure au seuil donné.

Pour gérer le problème de mémoire, j'ai décidé d'utiliser le paramètre max_features que j'ai fixé à 10 000. Cela signifie que les 10 000 premiers mots pour lesquels la fréquence d'apparition est la plus élevée sont sélectionnés

In [11]:
# Create and fit the vectorizer to the training data
vectorizer_train_splt = CountVectorizer(max_features=10000)
bow_train_splt = vectorizer_train_splt.fit_transform(train_texts_splt)
train_splt_features_names = vectorizer_train_splt.get_feature_names()

print("\n\nTrain reduced features names")
print(train_splt_features_names)

print("\n\nVocabulary")
print(vectorizer_train_splt.vocabulary_)

bow_train_splt = bow_train_splt.toarray()
print("\n\nBoW train dimension")
print(bow_train_splt)
/usr/local/lib/python3.7/dist-packages/sklearn/utils/deprecation.py:87: FutureWarning: Function get_feature_names is deprecated; get_feature_names is deprecated in 1.0 and will be removed in 1.2. Please use get_feature_names_out instead.
  warnings.warn(msg, category=FutureWarning)

Train reduced features names
['00', '000', '01', '10', '100', '1000', '11', '12', '13', '13th', '14', '15', '150', '16', '17', '18', '18th', '19', '1920s', '1930', '1930s', '1931', '1932', '1933', '1934', '1935', '1936', '1937', '1938', '1939', '1940', '1940s', '1941', '1942', '1943', '1944', '1945', '1946', '1948', '1949', '1950', '1950s', '1951', '1953', '1955', '1957', '1959', '1960', '1960s', '1963', '1964', '1965', '1966', '1967', '1968', '1969', '1970', '1970s', '1971', '1972', '1973', '1974', '1975', '1976', '1977', '1978', '1979', '1980', '1980s', '1981', '1982', '1983', '1984', '1985', '1986', '1987', '1988', '1989', '1990', '1990s', '1991', '1992', '1993', '1994', '1995', '1996', '1997', '1998', '1999', '19th', '1st', '20', '200', '2000', '2001', '2002', '2003', '2004', '2005', '2006', '2007', '2008', '2009', '20s', '20th', '21', '21st', '22', '23', '24', '25', '250', '26', '27', '28', '2nd', '30', '300', '3000', '30s', '33', '35', '3d', '3rd', '40', '40s', '45', '4th', '50', '500', '50s', '5th', '60', '60s', '64', '666', '70', '700', '70s', '73', '75', '80', '80s', '85', '90', '90s', '95', '98', '99', 'aaron', 'abandon', 'abandoned', 'abbott', 'abc', 'abigail', 'abilities', 'ability', 'able', 'ably', 'aboard', 'abomination', 'abortion', 'abound', 'about', 'above', 'abraham', 'abroad', 'abrupt', 'abruptly', 'absence', 'absent', 'absolute', 'absolutely', 'absorbed', 'absorbing', 'abstract', 'absurd', 'absurdity', 'abu', 'abundance', 'abuse', 'abused', 'abusive', 'abysmal', 'academy', 'accent', 'accents', 'accept', 'acceptable', 'acceptance', 'accepted', 'accepting', 'accepts', 'access', 'accessible', 'accident', 'accidental', 'accidentally', 'acclaim', 'acclaimed', 'accompanied', 'accompany', 'accompanying', 'accomplish', 'accomplished', 'accomplishment', 'according', 'account', 'accounts', 'accuracy', 'accurate', 'accurately', 'accused', 'accustomed', 'ace', 'achieve', 'achieved', 'achievement', 'achievements', 'achieves', 'achieving', 'achilles', 'acid', 'acknowledge', 'acquaintance', 'acquire', 'acquired', 'across', 'act', 'acted', 'acting', 'action', 'actions', 'active', 'activities', 'activity', 'actor', 'actors', 'actress', 'actresses', 'acts', 'actual', 'actuality', 'actually', 'ad', 'ada', 'adam', 'adams', 'adapt', 'adaptation', 'adaptations', 'adapted', 'adaption', 'add', 'added', 'addict', 'addicted', 'addiction', 'adding', 'addition', 'additional', 'additionally', 'address', 'addressing', 'adds', 'adequate', 'adequately', 'aditya', 'administration', 'admirable', 'admirably', 'admiration', 'admire', 'admired', 'admirer', 'admission', 'admit', 'admits', 'admitted', 'admittedly', 'adolescent', 'adopted', 'adorable', 'adore', 'adored', 'adrian', 'ads', 'adult', 'adultery', 'adults', 'advance', 'advanced', 'advances', 'advantage', 'adventure', 'adventures', 'adventurous', 'adversity', 'advertised', 'advertising', 'advice', 'advise', 'advised', 'ae', 'aesthetic', 'affair', 'affairs', 'affect', 'affected', 'affecting', 'affection', 'affections', 'affects', 'affleck', 'afford', 'afghanistan', 'afi', 'aforementioned', 'afraid', 'africa', 'african', 'after', 'afterlife', 'aftermath', 'afternoon', 'afterward', 'afterwards', 'again', 'against', 'age', 'aged', 'agency', 'agenda', 'agent', 'agents', 'ages', 'aggressive', 'aging', 'ago', 'agony', 'agree', 'agreed', 'agrees', 'ah', 'ahead', 'ahem', 'ahmad', 'aid', 'aided', 'aids', 'aiello', 'aim', 'aime', 'aimed', 'aiming', 'aims', 'ain', 'air', 'aircraft', 'aired', 'airing', 'airplane', 'airport', 'ajay', 'aka', 'akin', 'akira', 'akshay', 'al', 'ala', 'alain', 'alan', 'alarm', 'alas', 'alba', 'albeit', 'albert', 'album', 'albums', 'alcohol', 'alcoholic', 'alcoholism', 'alec', 'alert', 'alex', 'alexander', 'alexandra', 'alexandre', 'alfred', 'ali', 'alice', 'alicia', 'alien', 'alienate', 'aliens', 'alike', 'alison', 'alive', 'all', 'allan', 'alleged', 'allegedly', 'allegorical', 'allegory', 'allen', 'alley', 'alliance', 'alligator', 'allow', 'allowed', 'allowing', 'allows', 'allusions', 'ally', 'almighty', 'almost', 'alone', 'along', 'alongside', 'alot', 'already', 'alright', 'also', 'alter', 'altered', 'alternate', 'alternately', 'alternative', 'although', 'altman', 'altogether', 'alvin', 'always', 'am', 'amanda', 'amateur', 'amateurish', 'amazed', 'amazing', 'amazingly', 'amazon', 'amber', 'ambiance', 'ambiguity', 'ambiguous', 'ambition', 'ambitions', 'ambitious', 'america', 'american', 'americans', 'amid', 'amidst', 'amin', 'amitabh', 'amok', 'among', 'amongst', 'amount', 'amounts', 'ample', 'amrita', 'amuse', 'amused', 'amusement', 'amusing', 'amy', 'an', 'anakin', 'analysis', 'analyze', 'anchor', 'anchors', 'ancient', 'and', 'anders', 'anderson', 'andre', 'andrei', 'andrew', 'andrews', 'andy', 'ang', 'angel', 'angela', 'angeles', 'angelina', 'angelo', 'angels', 'anger', 'angie', 'angle', 'angles', 'angry', 'angst', 'anguish', 'anil', 'animal', 'animals', 'animated', 'animation', 'animations', 'animator', 'animators', 'anime', 'aniston', 'anita', 'ann', 'anna', 'anne', 'annie', 'anniversary', 'announced', 'annoy', 'annoyance', 'annoyed', 'annoying', 'annoyingly', 'annoys', 'anonymous', 'another', 'answer', 'answered', 'answering', 'answers', 'antagonist', 'anthology', 'anthony', 'anti', 'antichrist', 'anticipated', 'anticipation', 'antics', 'anton', 'antonio', 'antonioni', 'ants', 'antwerp', 'antwone', 'anxiety', 'anxious', 'any', 'anybody', 'anyhow', 'anymore', 'anyone', 'anything', 'anytime', 'anyway', 'anyways', 'anywhere', 'apart', 'apartheid', 'apartment', 'apartments', 'ape', 'apes', 'aplomb', 'apocalypse', 'apocalyptic', 'apologies', 'appalled', 'appalling', 'apparent', 'apparently', 'appeal', 'appealing', 'appeals', 'appear', 'appearance', 'appearances', 'appeared', 'appearing', 'appears', 'applaud', 'applause', 'apple', 'applied', 'applies', 'apply', 'appreciate', 'appreciated', 'appreciation', 'apprentice', 'approach', 'approached', 'approaches', 'approaching', 'appropriate', 'appropriately', 'approval', 'approved', 'approximately', 'april', 'apt', 'aptly', 'arab', 'arc', 'arch', 'archer', 'archive', 'are', 'area', 'areas', 'aren', 'arguably', 'argue', 'arguing', 'argument', 'arguments', 'ariel', 'arise', 'arizona', 'arjun', 'ark', 'arkin', 'arm', 'armageddon', 'armed', 'armor', 'arms', 'armstrong', 'army', 'arnie', 'arnold', 'around', 'aroused', 'arquette', 'arranged', 'array', 'arrest', 'arrested', 'arrival', 'arrive', 'arrived', 'arrives', 'arriving', 'arrogance', 'arrogant', 'arrow', 'art', 'artemisia', 'arthur', 'article', 'artificial', 'artist', 'artistic', 'artistry', 'artists', 'arts', 'artsy', 'artwork', 'arty', 'as', 'ash', 'ashamed', 'ashley', 'asia', 'asian', 'aside', 'ask', 'asked', 'askey', 'asking', 'asks', 'asleep', 'aspect', 'aspects', 'aspirations', 'aspiring', 'ass', 'assassin', 'assassination', 'assassins', 'assault', 'assembled', 'asset', 'assigned', 'assignment', 'assist', 'assistance', 'assistant', 'associate', 'associated', 'association', 'assorted', 'assume', 'assumed', 'assumes', 'assuming', 'assure', 'assured', 'astaire', 'astonished', 'astonishing', 'astonishingly', 'astounding', 'astronauts', 'asylum', 'at', 'ate', 'athletic', 'atlantis', 'atmosphere', 'atmospheric', 'atomic', 'atrocious', 'atrocities', 'atrocity', 'attached', 'attachment', 'attack', 'attacked', 'attacking', 'attacks', 'attempt', 'attempted', 'attempting', 'attempts', 'attenborough', 'attend', 'attendant', 'attended', 'attending', 'attends', 'attention', 'attic', 'attitude', 'attitudes', 'attorney', 'attract', 'attracted', 'attraction', 'attractive', 'attributed', 'attributes', 'audience', 'audiences', 'audio', 'audition', 'audrey', 'august', 'aunt', 'aunts', 'aussie', 'austen', 'austin', 'australia', 'australian', 'austria', 'auteur', 'authentic', 'authenticity', 'author', 'authorities', 'authority', 'authors', 'auto', 'autobiography', 'automatic', 'automatically', 'available', 'avenge', 'average', 'avid', 'avoid', 'avoided', 'avoiding', 'avoids', 'awaiting', 'awake', 'awakening', 'awakens', 'award', 'awarded', 'awards', 'aware', 'awareness', 'away', 'awe', 'aweigh', 'awesome', 'awful', 'awfully', 'awfulness', 'awhile', 'awkward', 'awkwardly', 'axe', 'azumi', 'babe', 'babes', 'babies', 'baby', 'babysitter', 'bacall', 'bach', 'bachchan', 'bachelor', 'back', 'backdrop', 'backed', 'background', 'backgrounds', 'backs', 'backwards', 'backwoods', 'bacon', 'bad', 'baddie', 'baddies', 'badly', 'badness', 'baffling', 'bag', 'bagdad', 'bait', 'baked', 'baker', 'bakshi', 'balance', 'balanced', 'balcony', 'bald', 'baldwin', 'ball', 'ballet', 'balloon', 'balls', 'banal', 'band', 'bands', 'bang', 'bank', 'banks', 'banned', 'banter', 'bar', 'barbara', 'barbra', 'bare', 'barely', 'bargain', 'barker', 'barman', 'barnes', 'barney', 'barrel', 'barry', 'barrymore', 'bars', 'bart', 'base', 'baseball', 'based', 'basement', 'bash', 'bashing', 'basic', 'basically', 'basil', 'basinger', 'basis', 'basketball', 'bastard', 'bat', 'bates', 'bath', 'bathing', 'bathroom', 'bathtub', 'batman', 'bats', 'battle', 'battlefield', 'battles', 'battlestar', 'battling', 'bauer', 'bay', 'bbc', 'be', 'beach', 'bean', 'beans', 'bear', 'beard', 'bearing', 'bears', 'beast', 'beat', 'beaten', 'beating', 'beatles', 'beats', 'beatty', 'beautiful', 'beautifully', 'beauty', 'beaver', 'became', 'because', 'beckham', 'beckinsale', 'become', 'becomes', 'becoming', 'bed', 'bedroom', 'bee', 'been', 'beer', 'beers', 'beetle', 'before', 'beforehand', 'befriends', 'beg', 'began', 'begging', 'begin', 'beginning', 'begins', 'begs', 'begun', 'behave', 'behaves', 'behaving', 'behavior', 'behaviour', 'behind', 'behold', 'being', 'beings', 'bela', 'belief', 'beliefs', 'believability', 'believable', 'believe', 'believed', 'believer', 'believes', 'believing', 'bell', 'belle', 'belly', 'belong', 'belongs', 'beloved', 'below', 'belt', 'belushi', 'ben', 'bench', 'bend', 'beneath', 'benefit', 'benefits', 'benet', 'benjamin', 'benny', 'benoit', 'benson', 'bent', 'beowulf', 'berenger', 'bergman', 'berkeley', 'berlin', 'bernard', 'bernsen', 'berserk', 'bert', 'beside', 'besides', 'best', 'bet', 'betrayal', 'betrayed', 'betrays', 'bets', 'bette', 'better', 'bettie', 'betty', 'between', 'beverly', 'beware', 'beyond', 'bfg', 'bias', 'biased', 'bible', 'biblical', 'bickering', 'bicycle', 'big', 'bigfoot', 'bigger', 'biggest', 'bike', 'biker', 'bikini', 'biko', 'bill', 'billed', 'billing', 'billion', 'bills', 'billy', 'bin', 'bing', 'binoche', 'biography', 'biopic', 'bird', 'birds', 'birth', 'birthday', 'bit', 'bitch', 'bitchy', 'bite', 'bites', 'biting', 'bits', 'bitten', 'bitter', 'bittersweet', 'bizarre', 'bjm', 'black', 'blackmail', 'blacks', 'blade', 'blah', 'blair', 'blaise', 'blake', 'blame', 'blamed', 'blames', 'bland', 'blandings', 'blank', 'blanks', 'blast', 'blatant', 'blatantly', 'blaxploitation', 'blazing', 'bleak', 'bleed', 'blend', 'blending', 'blends', 'bless', 'blessing', 'blew', 'blind', 'bliss', 'bloated', 'blob', 'block', 'blockbuster', 'blockbusters', 'bloke', 'blond', 'blonde', 'blondell', 'blood', 'bloodbath', 'blooded', 'bloodshed', 'bloody', 'bloom', 'blossom', 'blow', 'blowing', 'blown', 'blows', 'blue', 'blues', 'blunt', 'blurred', 'blurry', 'bo', 'board', 'boast', 'boasts', 'boat', 'bob', 'bobby', 'bodies', 'body', 'bodyguard', 'bogart', 'bogdanovich', 'bogus', 'boil', 'boiled', 'bold', 'bolivia', 'boll', 'bollywood', 'bomb', 'bombing', 'bombs', 'bonanza', 'bond', 'bondage', 'bone', 'bones', 'bonham', 'bonnie', 'bonus', 'boob', 'boobs', 'boogeyman', 'boogie', 'book', 'booker', 'books', 'boom', 'boone', 'boost', 'boot', 'booth', 'boots', 'booze', 'border', 'borders', 'bore', 'bored', 'boredom', 'boring', 'boris', 'born', 'borrow', 'borrowed', 'boss', 'bosses', 'boston', 'botched', 'both', 'bother', 'bothered', 'bothering', 'bothers', 'bottle', 'bottom', 'bought', 'bounce', 'bound', 'boundaries', 'bounty', 'bourne', 'bout', 'bow', 'bowl', 'bowling', 'box', 'boxer', 'boxes', 'boxing', 'boy', 'boyer', 'boyfriend', 'boyfriends', 'boyish', 'boyle', 'boys', 'br', 'bra', 'brad', 'bradford', 'bradley', 'brady', 'brain', 'brainless', 'brains', 'branagh', 'branch', 'brand', 'brando', 'brashear', 'brat', 'brave', 'braveheart', 'bravery', 'bravo', 'brazil', 'bread', 'break', 'breakdown', 'breakfast', 'breaking', 'breaks', 'breakthrough', 'breast', 'breasts', 'breath', 'breathe', 'breathing', 'breathless', 'breathtaking', 'breckinridge', 'breed', 'breeze', 'brenda', 'brendan', 'brennan', 'brent', 'brett', 'brian', 'brick', 'bride', 'brides', 'bridge', 'bridges', 'bridget', 'brief', 'briefly', 'brien', 'bright', 'brilliance', 'brilliant', 'brilliantly', 'bring', 'bringing', 'brings', 'brink', 'brit', 'britain', 'british', 'britney', 'brits', 'broad', 'broadcast', 'broadway', 'brock', 'broke', 'broken', 'bronson', 'bronte', 'brooding', 'brooke', 'brooklyn', 'brooks', 'bros', 'brosnan', 'brother', 'brothers', 'brought', 'brow', 'brown', 'bruce', 'bruckheimer', 'bruno', 'brush', 'brutal', 'brutality', 'brutally', 'bryan', 'bsg', 'btk', 'btw', 'bubba', 'bubble', 'buck', 'bucket', 'bucks', 'bud', 'buddies', 'budding', 'buddy', 'budget', 'budgets', 'buff', 'buffalo', 'buffs', 'buffy', 'bug', 'bugs', 'build', 'building', 'buildings', 'builds', 'built', 'bulk', 'bull', 'bullet', 'bullets', 'bullock', 'bully', 'bullying', 'bum', 'bumbling', 'bunch', 'bunker', 'bunny', 'bunuel', 'burakov', 'burial', 'buried', 'burke', 'burn', 'burned', 'burning', 'burns', 'burnt', 'burst', 'bursting', 'bursts', 'burt', 'burton', 'bury', 'bus', 'busby', 'buscemi', 'busey', 'bush', 'business', 'businessman', 'bust', 'buster', 'busy', 'but', 'butch', 'butcher', 'butchered', 'butler', 'butt', 'butterfly', 'button', 'buttons', 'buy', 'buying', 'buys', 'buzz', 'by', 'bye', 'byrne', 'byron', 'cab', 'cabin', 'cable', 'caesar', 'café', 'cage', 'cagney', 'cain', 'caine', 'cake', 'cal', 'caliber', 'calibre', 'california', 'call', 'called', 'calling', 'calls', 'calm', 'camcorder', 'came', 'cameo', 'cameos', 'camera', 'cameraman', 'cameras', 'cameron', 'camp', 'campaign', 'campbell', 'camping', 'camps', 'campus', 'campy', 'can', 'canada', 'canadian', 'canceled', 'cancelled', 'cancer', 'candidate', 'candidates', 'candle', 'candles', 'candy', 'cannes', 'cannibal', 'cannibals', 'cannon', 'cannot', 'canon', 'cant', 'canvas', 'canyon', 'cap', 'capable', 'capacity', 'cape', 'capital', 'capitalism', 'capitalize', 'capote', 'capra', 'caprica', 'capshaw', 'capsule', 'capt', 'captain', 'captivated', 'captivating', 'capture', 'captured', 'captures', 'capturing', 'car', 'card', 'cardboard', 'cards', 'care', 'cared', 'career', 'careers', 'careful', 'carefully', 'careless', 'carell', 'cares', 'caretaker', 'carey', 'caricature', 'caricatures', 'caring', 'carl', 'carla', 'carlisle', 'carlito', 'carmen', 'carnage', 'carnival', 'carnosaur', 'carol', 'caron', 'carpenter', 'carpet', 'carradine', 'carrey', 'carrie', 'carried', 'carries', 'carry', 'carrying', 'cars', 'carter', 'cartoon', 'cartoonish', 'cartoons', 'cary', 'casablanca', 'case', 'cases', 'cash', 'casino', 'casper', 'cassavetes', 'cassidy', 'cast', 'casted', 'casting', 'castle', 'castro', 'casts', 'casual', 'casually', 'cat', 'catch', 'catches', 'catching', 'catchy', 'categories', 'category', 'catherine', 'catholic', 'cats', 'cattle', 'caught', 'cause', 'caused', 'causes', 'causing', 'caution', 'cave', 'cbc', 'cbs', 'cd', 'cecil', 'cedric', 'ceiling', 'celebrate', 'celebrated', 'celebrates', 'celebrating', 'celebration', 'celebrities', 'celebrity', 'celine', 'cell', 'cells', 'celluloid', 'cemetery', 'cena', 'censors', 'censorship', 'center', 'centered', 'centers', 'central', 'centre', 'cents', 'centuries', 'century', 'cerebral', 'ceremony', 'certain', 'certainly', 'cg', 'cgi', 'chain', 'chained', 'chainsaw', 'chair', 'chairman', 'challenge', 'challenged', 'challenges', 'challenging', 'chamber', 'chamberlain', 'champion', 'championship', 'chan', 'chance', 'chances', 'chandler', 'chaney', 'change', 'changed', 'changes', 'changing', 'channel', 'channels', 'chant', 'chaos', 'chaotic', 'chaplin', 'chapter', 'chapters', 'character', 'characterisation', 'characteristic', 'characteristics', 'characterization', 'characterizations', 'characters', 'charge', 'charged', 'charges', 'charisma', 'charismatic', 'charity', 'charles', 'charlie', 'charlotte', 'charlton', 'charm', 'charming', 'charms', 'chase', 'chased', 'chases', 'chasing', 'chat', 'chavez', 'che', 'cheadle', 'cheap', 'cheaper', 'cheaply', 'cheat', 'cheated', 'cheating', 'check', 'checked', 'checking', 'cheech', 'cheek', 'cheer', 'cheerful', 'cheering', 'cheers', 'cheese', 'cheesiness', 'cheesy', 'chef', 'chemical', 'chemistry', 'chen', 'cher', 'cherish', 'cheryl', 'chess', 'chest', 'cheung', 'chevy', 'chew', 'chewing', 'chiba', 'chicago', 'chick', 'chicken', 'chicks', 'chico', 'chief', 'chikatilo', 'child', 'childhood', 'childish', 'children', 'chill', 'chiller', 'chilling', 'chills', 'china', 'chinese', 'chip', 'chloe', 'chock', 'choice', 'choices', 'choir', 'choke', 'chomsky', 'chong', 'choose', 'chooses', 'choosing', 'chop', 'chopped', 'chopping', 'choppy', 'chops', 'chore', 'choreographed', 'choreographer', 'choreography', 'chorus', 'chose', 'chosen', 'chris', 'christ', 'christensen', 'christian', 'christianity', 'christians', 'christie', 'christina', 'christine', 'christmas', 'christopher', 'christy', 'chronicles', 'chu', 'chuck', 'chuckle', 'chuckles', 'church', 'cia', 'cigarette', 'cigarettes', 'cillian', 'cinderella', 'cindy', 'cinema', 'cinemas', 'cinematic', 'cinematographer', 'cinematographic', 'cinematography', 'circa', 'circle', 'circles', 'circumstance', 'circumstances', 'circus', 'cities', 'citizen', 'citizens', 'city', 'civil', 'civilians', 'civilization', 'clad', 'claim', 'claimed', 'claiming', 'claims', 'claire', 'clan', 'clara', 'clarence', 'clarity', 'clark', 'clarke', 'clash', 'class', 'classes', 'classic', 'classical', 'classics', 'classified', 'classmates', 'classy', 'claude', 'claus', 'claustrophobic', 'claw', 'clay', 'clean', 'cleaned', 'cleaner', 'cleaning', 'clear', 'clearly', 'clerk', 'clever', 'cleverly', 'cliche', 'cliched', 'cliches', 'cliché', 'clichéd', 'clichés', 'click', 'client', 'cliff', 'cliffhanger', 'clifford', 'climactic', 'climate', 'climatic', 'climax', 'climb', 'climbing', 'climbs', 'clint', 'clip', 'clips', 'clive', 'cloak', 'clock', 'clockwork', 'clone', 'clooney', 'close', 'closed', 'closely', 'closer', 'closest', 'closet', 'closeups', 'closing', 'closure', 'cloth', 'clothes', 'clothing', 'clouds', 'clown', 'club', 'clubs', 'clue', 'clueless', 'clues', 'clumsily', 'clumsy', 'clunker', 'clunky', 'clyde', 'co', 'coach', 'coast', 'coaster', 'coat', 'coburn', 'cocaine', 'cockney', 'cocktail', 'cocky', 'code', 'cody', 'coffee', 'coffin', 'cohen', 'coherence', 'coherent', 'cohesive', 'coincidence', 'coincidences', 'coke', 'cold', 'cole', 'coleman', 'colin', 'collaboration', 'collapse', 'collapses', 'collar', 'colleague', 'colleagues', 'collect', 'collecting', 'collection', 'collective', 'collector', 'college', 'collette', 'collins', 'colman', 'colonel', 'colonial', 'colony', 'color', 'colored', 'colorful', 'colors', 'colour', 'colours', 'columbia', 'columbo', 'com', 'coma', 'combat', 'combination', 'combine', 'combined', 'combines', 'combining', 'combs', 'come', 'comeback', 'comedian', 'comedians', 'comedic', 'comedies', 'comedy', 'comes', 'comfort', 'comfortable', 'comic', 'comical', 'comics', 'coming', 'command', 'commander', 'commanding', 'commando', 'commendable', 'comment', 'commentary', 'commented', 'commenting', 'comments', 'commercial', 'commercials', 'commit', 'commitment', 'commits', 'committed', 'committee', 'committing', 'common', 'communicate', 'communication', 'communism', 'communist', 'communities', 'community', 'companies', 'companion', 'companions', 'company', 'comparable', 'compare', 'compared', 'comparing', 'comparison', 'comparisons', 'compassion', 'compassionate', 'compelled', 'compelling', 'compensate', 'compete', 'competent', 'competently', 'competing', 'competition', 'competitive', 'complain', 'complained', 'complaining', 'complains', 'complaint', 'complaints', 'complement', 'complete', 'completed', 'completely', 'complex', 'complexities', 'complexity', 'complicated', 'complications', 'compliment', 'composed', 'composer', 'composition', 'compositions', 'compound', 'comprehend', 'comprehensive', 'comprised', 'compromise', 'compulsive', 'computer', 'computers', 'con', 'conan', 'conceit', 'conceived', 'concentrate', 'concentrates', 'concentration', 'concept', 'conception', 'concepts', 'concern', 'concerned', 'concerning', 'concerns', 'concert', 'conclude', 'conclusion', 'conclusions', 'concrete', 'condemned', 'condition', 'conditions', 'conductor', 'confederate', 'confess', 'confession', 'confidence', 'confident', 'confined', 'confines', 'confirmed', 'conflict', 'conflicted', 'conflicts', 'confront', 'confrontation', 'confronted', 'confronting', 'confronts', 'confuse', 'confused', 'confusing', 'confusion', 'connect', 'connected', 'connecticut', 'connection', 'connections', 'connery', 'conniving', 'connolly', 'connor', 'conrad', 'conroy', 'cons', 'conscience', 'conscious', 'consciousness', 'consequence', 'consequences', 'consequently', 'conservative', 'consider', 'considerable', 'considerably', 'consideration', 'considered', 'considering', 'considers', 'consist', 'consistent', 'consistently', 'consists', 'conspiracy', 'constant', 'constantly', 'constraints', 'construct', 'constructed', 'construction', 'consumed', 'contact', 'contacts', 'contain', 'contained', 'containing', 'contains', 'contemplate', 'contemplating', 'contemporary', 'contempt', 'contend', 'content', 'contest', 'contestant', 'contestants', 'context', 'continent', 'continually', 'continue', 'continued', 'continues', 'continuing', 'continuity', 'continuous', 'continuously', 'contract', 'contrary', 'contrast', 'contrasted', 'contrasting', 'contribute', 'contributed', 'contribution', 'contrived', 'control', 'controlled', 'controlling', 'controls', 'controversial', 'controversy', 'convenient', 'conveniently', 'convent', 'convention', 'conventional', 'conventions', 'conversation', 'conversations', 'converted', 'convey', 'conveyed', 'conveying', 'conveys', 'convict', 'convicted', 'conviction', 'convince', 'convinced', 'convinces', 'convincing', 'convincingly', 'convoluted', 'cook', 'cookie', 'cooking', 'cool', 'coolest', 'coop', 'cooper', 'cop', 'cope', 'copied', 'copies', 'cops', 'copy', 'corbett', 'corbin', 'core', 'corey', 'corky', 'corleone', 'corman', 'corn', 'corner', 'corners', 'corny', 'corporate', 'corporation', 'corporations', 'corpse', 'corpses', 'correct', 'correctly', 'correctness', 'corridors', 'corrupt', 'corrupted', 'corruption', 'cortez', 'cost', 'costello', 'costner', 'costs', 'costume', 'costumes', 'couch', 'could', 'couldn', 'count', 'counter', 'counterpart', 'counting', 'countless', 'countries', 'country', 'countryside', 'counts', 'county', 'coup', 'couple', 'coupled', 'couples', 'courage', 'courageous', 'course', 'court', 'courtesy', 'courtney', 'courtroom', 'cousin', 'cousins', 'cover', 'coverage', 'covered', 'covering', 'covers', 'cow', 'coward', 'cowardly', 'cowboy', 'cowboys', 'cox', 'crack', 'cracker', 'cracking', 'cracks', 'craft', 'crafted', 'craig', 'crap', 'crappy', 'crash', 'crashed', 'crashes', 'crashing', 'crass', 'crater', 'craven', 'crawford', 'crawling', 'crazed', 'crazy', 'cream', 'create', 'created', 'creates', 'creating', 'creation', 'creations', 'creative', 'creativity', 'creator', 'creators', 'creature', 'creatures', 'credibility', 'credible', 'credit', 'credited', 'credits', 'creek', 'creep', 'creepiness', 'creepy', 'crew', 'cried', 'cries', 'crime', 'crimes', 'criminal', 'criminally', 'criminals', 'cringe', 'cringed', 'cringing', 'crippled', 'crisis', 'crisp', 'crispin', 'cristina', 'criteria', 'criterion', 'critic', 'critical', 'criticism', 'criticisms', 'criticize', 'criticized', 'critics', 'critique', 'crocodile', 'crooked', 'crooks', 'crop', 'crosby', 'cross', 'crossed', 'crosses', 'crossing', 'crouching', 'crouse', 'crow', 'crowd', 'crowded', 'crowds', 'crown', 'crucial', 'crude', 'cruel', 'cruella', 'cruelty', 'cruise', 'crummy', 'crush', 'crushing', 'cruz', 'cry', 'crying', 'crypt', 'crystal', 'cuba', 'cuban', 'cube', 'cue', 'culkin', 'culp', 'cult', 'cultural', 'culture', 'cultures', 'cunning', 'cunningham', 'cup', 'cure', 'curiosity', 'curious', 'curiously', 'curly', 'current', 'currently', 'currie', 'curse', 'cursed', 'curtain', 'curtis', 'cusack', 'cushing', 'custody', 'customers', 'cut', 'cute', 'cuts', 'cutter', 'cutting', 'cyborg', 'cyborgs', 'cycle', 'cynical', 'cynicism', 'cypher', 'czech', 'da', 'dad', 'daddy', 'dafoe', 'daft', 'dahmer', 'daily', 'daisies', 'daisy', 'dallas', 'dalton', 'damage', 'damaged', 'dame', 'damme', 'damn', 'damned', 'damon', 'damsel', 'dan', 'dana', 'dance', 'danced', 'dancer', 'dancers', 'dances', 'dancing', 'dandy', 'dane', 'danes', 'danger', 'dangerous', 'dangerously', 'dangers', 'dani', 'daniel', 'daniels', 'danish', 'danny', 'dante', 'daphne', 'dare', 'dares', 'daring', 'dark', 'darker', 'darkest', 'darkly', 'darkness', 'darling', 'darn', 'darren', 'darth', 'dash', 'dashing', 'data', 'date', 'dated', 'dates', 'dating', 'daughter', 'daughters', 'dave', 'david', 'davidson', 'davies', 'davis', 'dawn', 'dawson', 'day', 'daylight', 'days', 'daytime', 'dazzling', 'de', 'dead', 'deadly', 'deadpan', 'deaf', 'deal', 'dealer', 'dealing', 'deals', 'dealt', 'dean', 'deanna', 'dear', 'death', 'deaths', 'deathtrap', 'debate', 'debbie', 'deborah', 'debra', 'debt', 'debut', 'decade', 'decades', 'decapitated', 'deceased', 'december', 'decency', 'decent', 'deception', 'decide', 'decided', 'decidedly', 'decides', 'deciding', 'decision', 'decisions', 'deck', 'decline', 'decorated', 'dedicated', 'dee', 'deed', 'deeds', 'deemed', 'deep', 'deeper', 'deepest', 'deeply', 'deer', 'defeat', 'defeated', 'defend', 'defending', 'defense', 'defies', 'define', 'defined', 'defines', 'defining', 'definite', 'definitely', 'definition', 'definitive', 'defy', 'degrading', 'degree', 'degrees', 'del', 'deleted', 'delia', 'deliberate', 'deliberately', 'delicate', 'delicious', 'deliciously', 'delight', 'delighted', 'delightful', 'delightfully', 'delirious', 'deliver', 'deliverance', 'delivered', 'delivering', 'delivers', 'delivery', 'delon', 'deluise', 'delve', 'demand', 'demanding', 'demands', 'demeanor', 'demented', 'demille', 'demise', 'demographic', 'demon', 'demonic', 'demonicus', 'demons', 'demonstrate', 'demonstrated', 'demonstrates', 'demonstration', 'den', 'denial', 'deniro', 'denis', 'denise', 'denmark', 'dennis', 'denouement', 'dense', 'dental', 'dentist', 'denver', 'deny', 'denying', 'denzel', 'deol', 'depalma', 'depardieu', 'department', 'departure', 'depend', 'depending', 'depends', 'depict', 'depicted', 'depicting', 'depiction', 'depictions', 'depicts', 'depressed', 'depressing', 'depression', 'depth', 'depths', 'deputy', 'der', 'deranged', 'derek', 'derivative', 'dern', 'des', 'descends', 'descent', 'describe', 'described', 'describes', 'describing', 'description', 'desert', 'deserted', 'deserts', 'deserve', 'deserved', 'deservedly', 'deserves', 'deserving', 'desi', 'design', 'designed', 'designer', 'designs', 'desire', 'desired', 'desires', 'despair', 'desperate', 'desperately', 'desperation', 'despicable', 'despise', 'despite', 'destination', 'destined', 'destiny', 'destroy', 'destroyed', 'destroying', 'destroys', 'destruction', 'destructive', 'detached', 'detail', 'detailed', 'details', 'detective', 'detectives', 'determination', 'determine', 'determined', 'detract', 'detroit', 'deus', 'devastating', 'develop', 'developed', 'developing', 'development', 'developments', 'develops', 'device', 'devices', 'devil', 'devils', 'devious', 'devoid', 'devoted', 'devotion', 'diabolical', 'dialog', 'dialogs', 'dialogue', 'dialogues', 'diamond', 'diana', 'diane', 'diary', 'diaz', 'dick', 'dickens', 'dickinson', 'dictator', 'did', 'didn', 'die', 'died', 'diego', 'dies', 'dietrich', 'difference', 'differences', 'different', 'differently', 'difficult', 'difficulties', 'difficulty', 'dig', 'digest', 'digging', 'digital', 'dignity', 'dilemma', 'dillon', 'dim', 'dimension', 'dimensional', 'din', 'diner', 'dinner', 'dinosaur', 'dinosaurs', 'dire', 'direct', 'directed', 'directing', 'direction', 'directions', 'directly', 'director', 'directorial', 'directors', 'directs', 'dirt', 'dirty', 'dis', 'disabled', 'disagree', 'disappear', 'disappearance', 'disappeared', 'disappearing', 'disappears', 'disappoint', 'disappointed', 'disappointing', 'disappointment', 'disappoints', 'disaster', 'disasters', 'disastrous', 'disbelief', 'disc', 'discernible', 'discipline', 'disco', 'discover', 'discovered', 'discovering', 'discovers', 'discovery', 'discuss', 'discussed', 'discussing', 'discussion', 'discussions', 'disdain', 'disease', 'disgrace', 'disguise', 'disguised', 'disgust', 'disgusted', 'disgusting', 'dish', 'disjointed', 'dislike', 'disliked', 'dismal', 'dismiss', 'disney', 'disorder', 'display', 'displayed', 'displaying', 'displays', 'disposal', 'disregard', 'distance', 'distant', 'distinct', 'distinction', 'distinctive', 'distinguished', 'distorted', 'distract', 'distracted', 'distracting', 'distraction', 'distraught', 'distress', 'distributed', 'distribution', 'distributors', 'district', 'disturbed', 'disturbing', 'diva', 'dive', 'diver', 'diverse', 'divided', 'divine', 'division', 'divorce', 'divorced', 'dixon', 'dj', 'do', 'doc', 'doctor', 'doctors', 'document', 'documentaries', 'documentary', 'dodgy', 'does', 'doesn', 'dog', 'dogma', 'dogs', 'doing', 'doll', 'dollar', 'dollars', 'dolls', 'dolph', 'dom', 'domestic', 'dominate', 'dominated', 'dominic', 'domino', 'don', 'donald', 'done', 'donna', 'dont', 'doo', 'doolittle', 'doom', 'doomed', 'door', 'doors', 'dopey', 'dorm', 'dorothy', 'dose', 'doses', 'double', 'doubt', 'doubts', 'doug', 'douglas', 'down', 'downbeat', 'downey', 'downfall', 'downhill', 'downright', 'downs', 'downtown', 'dozen', 'dozens', 'dr', 'drab', 'dracula', 'drag', 'dragged', 'dragging', 'dragon', 'dragons', 'drags', 'drain', 'drake', 'drama', 'dramas', 'dramatic', 'dramatically', 'dramatized', 'drastically', 'draw', 'drawing', 'drawings', 'drawn', 'draws', 'dread', 'dreaded', 'dreadful', 'dreadfully', 'dream', 'dreaming', 'dreams', 'dreamy', 'dreary', 'dreck', 'dress', 'dressed', 'dresses', 'dressing', 'dressler', 'drew', 'dreyfuss', 'drift', 'drifter', 'drink', 'drinking', 'drinks', 'drive', 'drivel', 'driven', 'driver', 'drivers', 'drives', 'driving', 'drop', 'dropped', 'dropping', 'drops', 'dross', 'drove', 'drowned', 'drowning', 'drug', 'drugged', 'drugs', 'drum', 'drunk', 'drunken', 'dry', 'du', 'dub', 'dubbed', 'dubbing', 'dubious', 'duchovny', 'duck', 'dud', 'dude', 'dudley', 'due', 'duel', 'duff', 'dug', 'duh', 'dukakis', 'duke', 'dukes', 'dull', 'dumb', 'dumber', 'dumbest', 'dump', 'dumped', 'dung', 'dunne', 'dunst', 'duo', 'duration', 'durbin', 'during', 'dust', 'dustin', 'dutch', 'duties', 'duty', 'duvall', 'dvd', 'dvds', 'dwarf', 'dwight', 'dyer', 'dying', 'dyke', 'dylan', 'dynamic', 'dynamics', 'dynamite', 'dysfunctional', 'each', 'eager', 'eagerly', 'eagle', 'ealing', 'ear', 'earl', 'earlier', 'earliest', 'early', 'earn', 'earned', 'earnest', 'earning', 'earns', 'ears', 'earth', 'ease', 'easier', 'easily', 'east', 'eastern', 'eastwood', 'easy', 'eat', 'eaten', 'eating', 'eats', 'ebay', 'ebert', 'eccentric', 'echo', 'echoes', 'economic', 'economy', 'ed', 'eddie', 'eddy', 'edgar', 'edge', 'edged', 'edgy', 'edie', 'edit', 'edited', 'edith', 'editing', 'edition', 'editor', 'edmund', 'educated', 'education', 'educational', 'edward', 'edwards', 'eerie', 'effect', 'effective', 'effectively', 'effectiveness', 'effects', 'effeminate', 'efficient', 'effort', 'effortless', 'effortlessly', 'efforts', 'egg', 'ego', 'egypt', 'egyptian', 'eh', 'eight', 'eighties', 'eighty', 'einstein', 'either', 'el', 'elaborate', 'elder', 'elderly', 'eldest', 'elected', 'election', 'electric', 'electricity', 'electronic', 'elegant', 'element', 'elements', 'elephant', 'elevate', 'elevator', 'eleven', 'eli', 'eliminate', 'elisha', 'elite', 'elizabeth', 'ella', 'ellen', 'elliot', 'elliott', 'elm', 'elmer', 'else', 'elsewhere', 'elvira', 'elvis', 'em', 'email', 'embarrass', 'embarrassed', 'embarrassing', 'embarrassingly', 'embarrassment', 'embrace', 'emerge', 'emerges', 'emil', 'emily', 'emma', 'emmanuelle', 'emmy', 'emotion', 'emotional', 'emotionally', 'emotions', 'empathy', 'emperor', 'emphasis', 'emphasize', 'empire', 'employ', 'employed', 'employee', 'employees', 'employment', 'employs', 'empty', 'en', 'enchanted', 'enchanting', 'encounter', 'encountered', 'encounters', 'encourage', 'encouraged', 'encourages', 'end', 'endearing', 'endeavor', 'ended', 'ending', 'endings', 'endless', 'endlessly', 'ends', 'endure', 'endured', 'enduring', 'enemies', 'enemy', 'energetic', 'energy', 'enforcer', 'engage', 'engaged', 'engagement', 'engaging', 'engine', 'engineer', 'england', 'english', 'englund', 'engrossing', 'enhance', 'enhanced', 'enhances', 'enigmatic', 'enjoy', 'enjoyable', 'enjoyed', 'enjoying', 'enjoyment', 'enjoys', 'enlightened', 'enormous', 'enormously', 'enough', 'ensemble', 'ensue', 'ensues', 'ensure', 'enter', 'entered', 'entering', 'enterprise', 'enters', 'entertain', 'entertained', 'entertainer', 'entertaining', 'entertainment', 'entertains', 'enthralling', 'enthusiasm', 'enthusiastic', 'enthusiasts', 'entire', 'entirely', 'entirety', 'entitled', 'entity', 'entrance', 'entries', 'entry', 'environment', 'environmental', 'envy', 'epic', 'epics', 'epidemic', 'episode', 'episodes', 'epitome', 'equal', 'equally', 'equipment', 'equivalent', 'er', 'era', 'eric', 'erik', 'erika', 'ernest', 'ernie', 'ernst', 'erotic', 'errol', 'error', 'errors', 'escape', 'escaped', 'escapes', 'escaping', 'especially', 'espionage', 'esquire', 'essence', 'essential', 'essentially', 'establish', 'established', 'establishing', 'establishment', 'estate', 'esther', 'estranged', 'et', 'etc', 'eternal', 'eternity', 'ethan', 'ethnic', 'eugene', 'euro', 'europa', 'europe', 'european', 'europeans', 'eustache', 'eva', 'evans', 'eve', 'evelyn', 'even', 'evening', 'event', 'events', 'eventual', 'eventually', 'ever', 'everett', 'evergreen', 'every', 'everybody', 'everyday', 'everyone', 'everything', 'everywhere', 'evidence', 'evident', 'evidently', 'evil', 'evoke', 'evokes', 'evolution', 'evolve', 'evolved', 'ewoks', 'ex', 'exact', 'exactly', 'exaggerated', 'exaggeration', 'examination', 'examine', 'example', 'examples', 'exceedingly', 'excellence', 'excellent', 'excellently', 'excels', 'except', 'exception', 'exceptional', 'exceptionally', 'exceptions', 'excess', 'excessive', 'excessively', 'exchange', 'excited', 'excitement', 'exciting', 'exclusive', 'exclusively', 'excruciating', 'excruciatingly', 'excuse', 'excuses', 'executed', 'execution', 'executive', 'executives', 'exercise', 'exhibit', 'exhilarating', 'exist', 'existed', 'existence', 'existent', 'existing', 'exists', 'exit', 'exorcist', 'exotic', 'expanded', 'expect', 'expectation', 'expectations', 'expected', 'expecting', 'expects', 'expedition', 'expense', 'expensive', 'experience', 'experienced', 'experiences', 'experiencing', 'experiment', 'experimental', 'experiments', 'expert', 'expertise', 'expertly', 'experts', 'explain', 'explained', 'explaining', 'explains', 'explanation', 'explicit', 'explode', 'explodes', 'exploding', 'exploit', 'exploitation', 'exploitative', 'exploited', 'exploits', 'exploration', 'explore', 'explored', 'explores', 'exploring', 'explosion', 'explosions', 'explosive', 'expose', 'exposed', 'exposition', 'exposure', 'express', 'expressed', 'expresses', 'expressing', 'expression', 'expressions', 'exquisite', 'extended', 'extensive', 'extent', 'exterior', 'extra', 'extraordinarily', 'extraordinary', 'extras', 'extreme', 'extremely', 'extremes', 'exudes', 'eye', 'eyed', 'eyes', 'eyre', 'fable', 'fabric', 'fabulous', 'face', 'faced', 'faces', 'facial', 'facility', 'facing', 'fact', 'factor', 'factors', 'factory', 'facts', 'factual', 'fade', 'faded', 'fades', 'fail', 'failed', 'failing', 'fails', 'failure', 'failures', 'faint', 'fair', 'fairbanks', 'fairly', 'fairness', 'fairy', 'fairytale', 'faith', 'faithful', 'fake', 'falk', 'fall', 'fallen', 'falling', 'falls', 'false', 'fame', 'famed', 'familiar', 'familiarity', 'families', 'family', 'famous', 'fan', 'fanatic', 'fanatics', 'fancy', 'fans', 'fantasies', 'fantastic', 'fantasy', 'far', 'farce', 'fare', 'farewell', 'farm', 'farmer', 'farnsworth', 'farrah', 'farrell', 'fart', 'fascinated', 'fascinating', 'fascination', 'fascism', 'fascist', 'fashion', 'fashioned', 'fashions', 'fassbinder', 'fast', 'faster', 'fat', 'fatal', 'fatale', 'fate', 'fated', 'father', 'fathers', 'fault', 'faults', 'faux', 'favor', 'favorite', 'favorites', 'favour', 'favourite', 'favourites', 'favours', 'fawcett', 'fay', 'fbi', 'fear', 'fearless', 'fears', 'feast', 'feat', 'feature', 'featured', 'features', 'featuring', 'fed', 'feeble', 'feed', 'feeding', 'feeds', 'feel', 'feeling', 'feelings', 'feels', 'feet', 'feinstone', 'felix', 'fell', 'fellini', 'fellow', 'felt', 'female', 'females', 'feminine', 'feminist', 'femme', 'fence', 'fencing', 'fenton', 'ferry', 'fest', 'festival', 'festivals', 'fetched', 'fetish', 'fever', 'few', 'fewer', 'fez', 'fi', 'fiancé', 'fiancée', 'fiasco', 'fiction', 'fictional', 'fictitious', 'fido', 'field', 'fields', 'fiend', 'fierce', 'fiery', 'fifteen', 'fifth', 'fifties', 'fifty', 'fight', 'fighter', 'fighters', 'fighting', 'fights', 'figure', 'figured', 'figures', 'file', 'files', 'fill', 'filled', 'filler', 'filling', 'film', 'filmed', 'filmic', 'filming', 'filmmaker', 'filmmakers', 'filmmaking', 'filmography', 'films', 'filth', 'filthy', 'final', 'finale', 'finally', 'financial', 'finch', 'find', 'finding', 'finds', 'fine', 'finest', 'finger', 'fingers', 'finish', 'finished', 'finishes', 'finishing', 'finney', 'finnish', 'fiona', 'fire', 'fired', 'firefighter', 'firefighters', 'fireplace', 'fires', 'firing', 'firm', 'firmly', 'firode', 'first', 'firstly', 'fish', 'fishburne', 'fisher', 'fishing', 'fist', 'fit', 'fits', 'fitting', 'fitzgerald', 'five', 'fix', 'fixed', 'flag', 'flair', 'flamboyant', 'flame', 'flames', 'flare', 'flash', 'flashback', 'flashbacks', 'flashes', 'flashing', 'flashy', 'flat', 'flavia', 'flavor', 'flaw', 'flawed', 'flawless', 'flaws', 'flea', 'fleeing', 'fleet', 'fleeting', 'fleming', 'flemming', 'flesh', 'fleshed', 'flew', 'flick', 'flicks', 'flies', 'flight', 'flimsy', 'fling', 'flip', 'flipping', 'flirting', 'floating', 'flock', 'flood', 'floor', 'floors', 'flop', 'florence', 'floriane', 'florida', 'flow', 'flower', 'flowers', 'flowing', 'flows', 'fluff', 'fluid', 'flute', 'fly', 'flying', 'flynn', 'foch', 'focus', 'focused', 'focuses', 'focusing', 'fodder', 'fog', 'foggy', 'foil', 'foley', 'folk', 'folks', 'follow', 'followed', 'followers', 'following', 'follows', 'fond', 'fonda', 'fontaine', 'food', 'fool', 'fooled', 'foolish', 'fools', 'foot', 'footage', 'football', 'footsteps', 'for', 'forbes', 'forbidden', 'force', 'forced', 'forces', 'forcing', 'ford', 'foreboding', 'foreign', 'foremost', 'forest', 'forever', 'forget', 'forgets', 'forgettable', 'forgetting', 'forgivable', 'forgive', 'forgiven', 'forgiveness', 'forgot', 'forgotten', 'form', 'formal', 'format', 'formed', 'former', 'formerly', 'forms', 'formula', 'formulaic', 'forrest', 'forsythe', 'fort', 'forth', 'forties', 'fortunate', 'fortunately', 'fortune', 'forty', 'forum', 'forward', 'forwarding', 'foster', 'fought', 'foul', 'found', 'foundation', 'four', 'fourth', 'fox', 'foxes', 'foxx', 'fragile', 'frail', 'frame', 'framed', 'frames', 'france', 'frances', 'franchise', 'francis', 'francisco', 'franco', 'frank', 'frankenstein', 'frankie', 'franklin', 'frankly', 'frantic', 'frat', 'fraud', 'freak', 'freaked', 'freaking', 'freaks', 'freaky', 'fred', 'freddy', 'free', 'freedom', 'freeman', 'freeze', 'freezing', 'french', 'frequent', 'frequently', 'fresh', 'freud', 'friday', 'fried', 'friend', 'friendly', 'friends', 'friendship', 'friendships', 'fright', 'frightened', 'frightening', 'fritz', 'frog', 'from', 'front', 'frontal', 'frontier', 'frost', 'fruit', 'frustrated', 'frustrating', 'frustration', 'frye', 'fu', 'fuel', 'fulci', 'fulfill', 'fulfilled', 'fulfilling', 'full', 'fuller', 'fully', 'fun', 'function', 'functions', 'fundamental', 'funding', 'funds', 'funeral', 'funky', 'funnier', 'funniest', 'funny', 'fur', 'furious', 'furniture', 'furry', 'further', 'furthermore', 'fury', 'fuss', 'future', 'futuristic', 'fuzzy', 'fx', 'gabby', 'gable', 'gabriel', 'gackt', 'gadget', 'gadgets', 'gag', 'gags', 'gain', 'gained', 'gal', 'galactica', 'galaxy', 'gallery', 'gambling', 'game', 'gamera', 'games', 'gamut', 'gandhi', 'gandolfini', 'gang', 'gangs', 'gangster', 'gangsters', 'gannon', 'gap', 'gaps', 'garage', 'garbage', 'garbo', 'garcia', 'garden', 'gardens', 'gardner', 'garfield', 'garland', 'garner', 'garnered', 'gary', 'gas', 'gasp', 'gate', 'gates', 'gather', 'gathered', 'gathering', 'gave', 'gay', 'gear', 'gee', 'geek', 'geeks', 'geeky', 'geisha', 'gem', 'gems', 'gena', 'gender', 'gene', 'general', 'generally', 'generate', 'generated', 'generation', 'generations', 'generic', 'generous', 'genetic', 'genie', 'genius', 'genre', 'genres', 'gentle', 'gentleman', 'gentlemen', 'gently', 'genuine', 'genuinely', 'geoffrey', 'george', 'georges', 'georgia', 'gerard', 'gere', 'german', 'germans', 'germany', 'gershwin', 'gesture', 'gestures', 'get', 'gets', 'getting', 'ghastly', 'ghetto', 'ghost', 'ghostly', 'ghosts', 'giallo', 'giamatti', 'giant', 'giants', 'gibson', 'gielgud', 'gift', 'gifted', 'gigantic', 'giggle', 'giggles', 'gilbert', 'gilliam', 'gillian', 'gimmick', 'gina', 'ginger', 'gino', 'giovanna', 'girl', 'girlfriend', 'girlfriends', 'girls', 'give', 'given', 'gives', 'giving', 'glad', 'gladiator', 'gladly', 'glamorous', 'glance', 'glaring', 'glass', 'glasses', 'glee', 'glen', 'glenda', 'glenn', 'glimpse', 'glimpses', 'global', 'globe', 'gloomy', 'gloria', 'glorious', 'gloriously', 'glory', 'glossy', 'glove', 'glover', 'glowing', 'glued', 'go', 'goal', 'goals', 'goat', 'god', 'godfather', 'gods', 'godzilla', 'goebbels', 'goers', 'goes', 'going', 'goings', 'gold', 'goldberg', 'goldblum', 'golden', 'goldie', 'goldsworthy', 'golf', 'gone', 'gonna', 'goo', 'good', 'goodbye', 'gooding', 'goodman', 'goodness', 'goods', 'goof', 'goofs', 'goofy', 'gopal', 'gordon', 'gore', 'gorgeous', 'gorilla', 'gory', 'gosh', 'gospel', 'got', 'goth', 'gothic', 'gotta', 'gotten', 'government', 'governor', 'govinda', 'grab', 'grabbed', 'grabbing', 'grabs', 'grace', 'graceful', 'gracie', 'grade', 'gradually', 'graduate', 'grady', 'graham', 'grail', 'grain', 'grainy', 'gram', 'grand', 'granddaughter', 'grandfather', 'grandma', 'grandmother', 'grandpa', 'grandparents', 'granger', 'grant', 'granted', 'graphic', 'graphics', 'grasp', 'grass', 'grateful', 'grating', 'gratuitous', 'grave', 'graves', 'graveyard', 'gravity', 'gray', 'grayson', 'great', 'greater', 'greatest', 'greatly', 'greatness', 'greats', 'greed', 'greedy', 'greek', 'green', 'greenaway', 'greene', 'greengrass', 'greg', 'gregory', 'grendel', 'greta', 'gretchen', 'grew', 'grey', 'grief', 'griffith', 'grim', 'grin', 'grinch', 'grip', 'gripe', 'gripping', 'grisly', 'gritty', 'gross', 'grossly', 'grotesque', 'ground', 'groundbreaking', 'grounds', 'group', 'groups', 'grow', 'growing', 'grown', 'grows', 'growth', 'grudge', 'gruesome', 'grumpy', 'gruner', 'guarantee', 'guaranteed', 'guard', 'guarded', 'guardian', 'guards', 'guess', 'guessed', 'guessing', 'guest', 'guests', 'guevara', 'guide', 'guilt', 'guilty', 'guinea', 'guinness', 'guitar', 'gum', 'gun', 'gunbuster', 'gundam', 'gunfire', 'gung', 'gunga', 'guns', 'guru', 'gusto', 'gut', 'guts', 'guy', 'guys', 'gwyneth', 'gym', 'gypo', 'gypsy', 'ha', 'habit', 'hack', 'hackenstein', 'hackman', 'hackneyed', 'hacks', 'had', 'hadley', 'hadn', 'hagen', 'haines', 'hair', 'hairdo', 'haired', 'hairy', 'hal', 'half', 'halfway', 'hall', 'hallmark', 'halloween', 'ham', 'hamilton', 'hamlet', 'hammer', 'hammerhead', 'hammy', 'han', 'hand', 'handed', 'handful', 'handicapped', 'handle', 'handled', 'handles', 'handling', 'hands', 'handsome', 'handy', 'hang', 'hanging', 'hangs', 'hank', 'hanks', 'hanna', 'hannah', 'hans', 'hapless', 'happen', 'happened', 'happening', 'happenings', 'happens', 'happily', 'happiness', 'happy', 'hara', 'harbor', 'hard', 'hardcore', 'hardened', 'harder', 'hardest', 'hardly', 'hardships', 'hardy', 'hare', 'harilal', 'hark', 'harlin', 'harlow', 'harm', 'harmless', 'harold', 'harriet', 'harris', 'harrison', 'harron', 'harrowing', 'harry', 'harsh', 'hart', 'hartley', 'hartman', 'hartnett', 'harvest', 'harvey', 'has', 'hasn', 'hat', 'hate', 'hated', 'hateful', 'hates', 'hating', 'hatred', 'hats', 'haunt', 'haunted', 'haunting', 'have', 'haven', 'having', 'havoc', 'hawk', 'hawke', 'hawn', 'hayden', 'hayes', 'hayward', 'hayworth', 'hazzard', 'hbo', 'he', 'head', 'headache', 'headed', 'heading', 'heads', 'health', 'healthy', 'heap', 'hear', 'heard', 'hearing', 'hears', 'heart', 'heartbreaking', 'hearted', 'heartfelt', 'hearts', 'heartwarming', 'heat', 'heath', 'heather', 'heaven', 'heavens', 'heavily', 'heavy', 'heck', 'hector', 'heels', 'height', 'heights', 'heist', 'held', 'helen', 'helena', 'helicopter', 'helicopters', 'hell', 'hello', 'helmet', 'help', 'helped', 'helpful', 'helping', 'helpless', 'helps', 'hence', 'henchman', 'henchmen', 'henderson', 'henry', 'hepburn', 'her', 'herbert', 'herd', 'here', 'heres', 'herman', 'hero', 'heroes', 'heroic', 'heroin', 'heroine', 'heroism', 'herrings', 'hers', 'herself', 'hes', 'heston', 'hey', 'heyday', 'hi', 'hidden', 'hide', 'hideous', 'hides', 'hiding', 'high', 'higher', 'highest', 'highlight', 'highlighted', 'highlights', 'highly', 'highway', 'hilarious', 'hilariously', 'hilarity', 'hill', 'hills', 'hilt', 'hilton', 'him', 'himself', 'hindi', 'hindsight', 'hines', 'hint', 'hinted', 'hints', 'hip', 'hippie', 'hippies', 'hire', 'hired', 'hires', 'hiring', 'his', 'hispanic', 'historic', 'historical', 'historically', 'history', 'hit', 'hitchcock', 'hitchhiker', 'hitler', 'hits', 'hitting', 'hk', 'hmm', 'hmmm', 'ho', 'hobgoblins', 'hockey', 'hoffman', 'hokey', 'hold', 'holding', 'holds', 'hole', 'holes', 'holiday', 'holland', 'hollow', 'holly', 'hollywood', 'holmes', 'holocaust', 'holy', 'homage', 'home', 'homeless', 'homer', 'homes', 'hometown', 'homicidal', 'homicide', 'homosexual', 'homosexuality', 'honest', 'honestly', 'honesty', 'honeymoon', 'hong', 'honor', 'honorable', 'hood', 'hook', 'hooked', 'hooker', 'hooper', 'hoot', 'hop', 'hope', 'hoped', 'hopefully', 'hopeless', 'hopelessly', 'hopes', 'hoping', 'hopkins', 'hopper', 'horizon', 'horn', 'horny', 'horrendous', 'horrible', 'horribly', 'horrid', 'horrific', 'horrified', 'horrifying', 'horror', 'horrors', 'horse', 'horses', 'hospital', 'host', 'hostage', 'hostel', 'hostile', 'hot', 'hotel', 'hottie', 'hound', 'hour', 'hours', 'house', 'household', 'houses', 'housewife', 'housing', 'how', 'howard', 'however', 'howling', 'http', 'hubby', 'hudson', 'hug', 'huge', 'hugely', 'hugh', 'hughes', 'hugo', 'huh', 'hulk', 'hum', 'human', 'humane', 'humanity', 'humans', 'humble', 'humiliation', 'humor', 'humorous', 'humour', 'hundred', 'hundreds', 'hung', 'hungarian', 'hunger', 'hungry', 'hunky', 'hunt', 'hunted', 'hunter', 'hunters', 'hunting', 'hurry', 'hurt', 'hurting', 'hurts', 'husband', 'husbands', 'hustler', 'huston', 'hybrid', 'hyde', 'hype', 'hyped', 'hyper', 'hypnotic', 'hysterical', 'hysterically', 'ian', 'ice', 'icon', 'iconic', 'icons', 'icy', 'id', 'idea', 'ideal', 'ideals', 'ideas', 'identical', 'identified', 'identify', 'identities', 'identity', 'idiocy', 'idiot', 'idiotic', 'idiots', 'idle', 'idol', 'ie', 'if', 'ignorance', 'ignorant', 'ignore', 'ignored', 'ignores', 'ignoring', 'igor', 'ii', 'iii', 'il', 'ill', 'illegal', 'illiterate', 'illness', 'illogical', 'illusion', 'illustrate', 'illustrated', 'illustrates', 'im', 'image', 'imagery', 'images', 'imaginable', 'imaginary', 'imagination', 'imaginative', 'imagine', 'imagined', 'imagining', 'imdb', 'imho', 'imitate', 'imitation', 'immature', 'immediate', 'immediately', 'immense', 'immensely', 'immersed', 'immigrant', 'immortal', 'imo', 'impact', 'impeccable', 'impending', 'impersonation', 'implausible', 'implication', 'implied', 'implies', 'imply', 'importance', 'important', 'importantly', 'impose', 'impossible', 'impress', 'impressed', 'impression', 'impressions', 'impressive', 'impressively', 'imprisoned', 'improbable', 'improve', 'improved', 'improvement', 'improvised', 'impulse', 'in', 'inability', 'inaccuracies', 'inaccurate', 'inadvertently', 'inane', 'inappropriate', 'incapable', 'incest', 'incestuous', 'inch', 'incident', 'incidental', 'incidentally', 'incidents', 'inclined', 'include', 'included', 'includes', 'including', 'inclusion', 'incoherent', 'incompetence', 'incompetent', 'incomprehensible', 'inconsistencies', 'inconsistent', 'incorrect', 'increased', 'increasing', 'increasingly', 'incredible', 'incredibly', 'indeed', 'independence', 'independent', 'india', 'indian', 'indiana', 'indians', 'indicate', 'indication', 'indie', 'indifference', 'indifferent', 'individual', 'individuals', 'induced', 'inducing', 'indulge', 'indulgence', 'indulgent', 'industrial', 'industry', 'inept', 'inevitable', 'inevitably', 'inexperienced', 'inexplicable', 'inexplicably', 'infamous', 'infatuated', 'infected', 'infectious', 'inferior', 'infested', 'infidelity', 'infinitely', 'influence', 'influenced', 'influences', 'influential', 'info', 'inform', 'information', 'informative', 'informed', 'informer', 'informs', 'ing', 'ingenious', 'ingredients', 'ingrid', 'inhabit', 'inhabitants', 'inherent', 'inheritance', 'inherited', 'initial', 'initially', 'inject', 'injured', 'injury', 'injustice', 'inmates', 'inner', 'innocence', 'innocent', 'innovative', 'innuendo', 'ins', 'insane', 'insanely', 'insanity', 'insects', 'insert', 'inserted', 'inside', 'insight', 'insightful', 'insights', 'insignificant', 'insipid', 'insist', 'insisted', 'insists', 'insomnia', 'inspector', 'inspiration', 'inspirational', 'inspire', 'inspired', 'inspiring', 'installment', 'instance', 'instances', 'instant', 'instantly', 'instead', 'instinct', 'instincts', 'institution', 'instruments', 'insult', 'insulted', 'insulting', 'insults', 'insurance', 'intact', 'integral', 'integrated', 'integrity', 'intellectual', 'intellectually', 'intelligence', 'intelligent', 'intelligently', 'intend', 'intended', 'intense', 'intensely', 'intensity', 'intent', 'intention', 'intentional', 'intentionally', 'intentions', 'inter', 'interact', 'interaction', 'interactions', 'interest', 'interested', 'interesting', 'interestingly', 'interests', 'interior', 'interiors', 'internal', 'international', 'internet', 'interplay', 'interpret', 'interpretation', 'interrupted', 'interview', 'interviewed', 'interviews', 'intestines', 'intimacy', 'intimate', 'into', 'intricate', 'intrigue', 'intrigued', 'intriguing', 'intro', 'introduce', 'introduced', 'introduces', 'introducing', 'introduction', 'invasion', 'invent', 'invented', 'invention', 'inventive', 'invested', 'investigate', 'investigating', 'investigation', 'investigator', 'investment', 'invisible', 'invite', 'invited', 'invites', 'involve', 'involved', 'involvement', 'involves', 'involving', 'iowa', 'iq', 'ira', 'iran', 'iranian', 'iraq', 'ireland', 'irene', 'iris', 'irish', 'iron', 'ironic', 'ironically', 'irony', 'irrational', 'irrelevant', 'irresistible', 'irresponsible', 'irritated', 'irritating', 'irving', 'irwin', 'is', 'isabelle', 'ish', 'island', 'islands', 'isn', 'isolated', 'isolation', 'israel', 'israeli', 'issue', 'issues', 'it', 'italian', 'italians', 'italy', 'item', 'items', 'its', 'itself', 'iturbi', 'iv', 'ivan', 'jabba', 'jack', 'jackass', 'jacket', 'jackie', 'jackman', 'jacknife', 'jackson', 'jacques', 'jaded', 'jaffar', 'jagger', 'jail', 'jake', 'james', 'jameson', 'jamie', 'jan', 'jane', 'janet', 'jannings', 'january', 'japan', 'japanese', 'jar', 'jared', 'jarring', 'jason', 'jaw', 'jaws', 'jay', 'jazz', 'je', 'jealous', 'jealousy', 'jean', 'jed', 'jedi', 'jeep', 'jeff', 'jeffrey', 'jenna', 'jennifer', 'jenny', 'jeremy', 'jerk', 'jerky', 'jerry', 'jersey', 'jess', 'jesse', 'jessica', 'jessie', 'jesus', 'jet', 'jew', 'jewel', 'jewelry', 'jewels', 'jewish', 'jews', 'jigsaw', 'jill', 'jim', 'jimmy', 'jo', 'joan', 'job', 'jobs', 'jock', 'jodie', 'joe', 'joel', 'joey', 'john', 'johnny', 'johnson', 'join', 'joined', 'joining', 'joins', 'joint', 'joke', 'joker', 'jokes', 'joking', 'jolie', 'jolly', 'jon', 'jonathan', 'jones', 'jordan', 'jose', 'joseph', 'josh', 'joshua', 'journalist', 'journey', 'joy', 'joys', 'jr', 'juan', 'judd', 'jude', 'judge', 'judged', 'judgement', 'judges', 'judging', 'judgment', 'judy', 'juice', 'jules', 'julia', 'julian', 'julie', 'juliet', 'juliette', 'jump', 'jumped', 'jumping', 'jumps', 'june', 'jungle', 'junior', 'junk', 'jurassic', 'jury', 'just', 'justice', 'justification', 'justified', 'justify', 'justin', 'juvenile', 'ka', 'kabei', 'kali', 'kalifornia', 'kamal', 'kane', 'kansas', 'kapoor', 'karate', 'kareena', 'karen', 'kari', 'karl', 'karloff', 'kate', 'kathleen', 'kathryn', 'kathy', 'kattan', 'kaufman', 'kay', 'kazan', 'keanu', 'keaton', 'keen', 'keep', 'keeper', 'keeping', 'keeps', 'kei', 'keitel', 'keith', 'keller', 'kells', 'kelly', 'ken', 'kennedy', 'kenneth', 'kenny', 'kent', 'kentucky', 'kept', 'kerry', 'kevin', 'key', 'keys', 'khan', 'khanna', 'ki', 'kick', 'kicked', 'kicking', 'kicks', 'kid', 'kiddie', 'kidding', 'kidman', 'kidnap', 'kidnapped', 'kidnapping', 'kids', 'kill', 'killed', 'killer', 'killers', 'killing', 'killings', 'kills', 'kilmer', 'kim', 'kind', 'kinda', 'kindly', 'kindness', 'kinds', 'king', 'kingdom', 'kings', 'kinky', 'kinnear', 'kinski', 'kirk', 'kirsten', 'kiss', 'kissing', 'kitchen', 'kitsch', 'kitty', 'kline', 'knack', 'knees', 'knew', 'knife', 'knight', 'knightley', 'knights', 'knives', 'knock', 'knocked', 'knocking', 'knocks', 'know', 'knowing', 'knowledge', 'known', 'knows', 'knoxville', 'kolchak', 'kong', 'korda', 'korea', 'korean', 'kornbluth', 'kramer', 'krell', 'kriemhild', 'kris', 'krishna', 'kristofferson', 'krueger', 'kubrick', 'kudos', 'kumar', 'kung', 'kurosawa', 'kurt', 'kyle', 'la', 'lab', 'label', 'labeled', 'labor', 'laboratory', 'labour', 'laced', 'lack', 'lacked', 'lacking', 'lackluster', 'lacks', 'ladder', 'laden', 'ladies', 'lady', 'laid', 'lake', 'lam', 'lamarr', 'lambs', 'lame', 'lampoon', 'lance', 'land', 'landed', 'landing', 'landmark', 'lands', 'landscape', 'landscapes', 'lane', 'lang', 'lange', 'language', 'languages', 'lansbury', 'lanza', 'laputa', 'large', 'largely', 'larger', 'largest', 'larry', 'lars', 'las', 'laser', 'last', 'lasted', 'lasting', 'lastly', 'lasts', 'late', 'lately', 'later', 'latest', 'latin', 'latter', 'laugh', 'laughable', 'laughably', 'laughed', 'laughing', 'laughs', 'laughter', 'launch', 'launched', 'laundry', 'laura', 'laurel', 'lauren', 'laurence', 'laurie', 'lavish', 'law', 'lawn', 'lawrence', 'laws', 'lawyer', 'lay', 'layered', 'layers', 'laying', 'lays', 'lazy', 'le', 'lead', 'leader', 'leaders', 'leadership', 'leading', 'leads', 'league', 'lean', 'leap', 'leaps', 'learn', 'learned', 'learning', 'learns', 'leary', 'least', 'leather', 'leave', 'leaves', 'leaving', 'lecture', 'led', 'ledger', 'lee', 'left', 'leg', 'legacy', 'legal', 'legend', 'legendary', 'legends', 'legion', 'legitimate', 'legs', 'leia', 'leigh', 'leila', 'lemmon', 'lena', 'lend', 'lends', 'length', 'lengthy', 'lennon', 'lens', 'lensman', 'lent', 'leo', 'leon', 'leonard', 'leopold', 'les', 'lesbian', 'lesbians', 'leslie', 'less', 'lesser', 'lesson', 'lessons', 'lester', 'let', 'letdown', 'lethal', 'lets', 'letter', 'letters', 'letting', 'level', 'levels', 'levy', 'lewis', 'lex', 'li', 'liam', 'liar', 'liberal', 'liberties', 'library', 'license', 'lie', 'lies', 'lieutenant', 'life', 'lifeless', 'lifestyle', 'lifetime', 'lift', 'lifted', 'lifts', 'light', 'lighter', 'lighthearted', 'lighting', 'lightly', 'lightning', 'lights', 'lightweight', 'likable', 'like', 'likeable', 'liked', 'likely', 'likes', 'likewise', 'liking', 'lil', 'lili', 'lily', 'limbs', 'limit', 'limitations', 'limited', 'limits', 'limp', 'lincoln', 'linda', 'lindsay', 'line', 'linear', 'liner', 'liners', 'lines', 'lingering', 'link', 'linked', 'links', 'lion', 'lionel', 'lions', 'liotta', 'lip', 'lips', 'lisa', 'list', 'listed', 'listen', 'listened', 'listener', 'listening', 'lists', 'lit', 'literal', 'literally', 'literary', 'literature', 'little', 'liu', 'live', 'lived', 'lively', 'lives', 'living', 'liz', 'liza', 'll', 'lloyd', 'lo', 'loach', 'load', 'loaded', 'loads', 'local', 'locale', 'locales', 'locals', 'locate', 'located', 'location', 'locations', 'lock', 'locke', 'locked', 'locker', 'logan', 'logic', 'logical', 'lois', 'lol', 'lola', 'lommel', 'london', 'lone', 'loneliness', 'lonely', 'loner', 'long', 'longer', 'longest', 'longing', 'longoria', 'look', 'looked', 'looking', 'looks', 'looney', 'loony', 'loose', 'loosely', 'lopez', 'lord', 'lords', 'loren', 'loretta', 'lorre', 'los', 'lose', 'loser', 'losers', 'loses', 'losing', 'loss', 'lost', 'lot', 'lotr', 'lots', 'lou', 'loud', 'louis', 'louise', 'lousy', 'lovable', 'love', 'loved', 'lovely', 'lover', 'lovers', 'loves', 'loving', 'lovingly', 'low', 'lowe', 'lower', 'lowest', 'loy', 'loyal', 'loyalty', 'lt', 'lubitsch', 'luc', 'lucas', 'lucille', 'luck', 'luckily', 'lucky', 'lucy', 'ludicrous', 'lugosi', 'luis', 'lukas', 'luke', 'lumet', 'lump', 'lunatic', 'lunch', 'lundgren', 'lung', 'lure', 'lured', 'lurid', 'lurking', 'luscious', 'lush', 'lust', 'luthor', 'lying', 'lynch', 'lynn', 'lyrics', 'ma', 'mabel', 'mac', 'macabre', 'macarthur', 'machine', 'machines', 'macho', 'mack', 'macmurray', 'macy', 'mad', 'made', 'madison', 'madman', 'madness', 'madonna', 'madsen', 'mae', 'mafia', 'magazine', 'magazines', 'maggie', 'magic', 'magical', 'magically', 'magician', 'magnificent', 'magnificently', 'maher', 'maid', 'mail', 'main', 'mainly', 'mainstream', 'maintain', 'maintained', 'maintains', 'majestic', 'major', 'majority', 'make', 'maker', 'makers', 'makes', 'makeup', 'making', 'malden', 'male', 'males', 'malevolent', 'mall', 'malone', 'malta', 'mama', 'mamet', 'man', 'manage', 'managed', 'management', 'manager', 'manages', 'managing', 'manchu', 'mandatory', 'mandy', 'manga', 'manhattan', 'maniac', 'manic', 'manipulate', 'manipulation', 'manipulative', 'mankind', 'mann', 'manner', 'mannered', 'mannerisms', 'manners', 'manny', 'mans', 'mansion', 'manufactured', 'many', 'map', 'marathon', 'marc', 'marcel', 'march', 'margaret', 'maria', 'marie', 'marilyn', 'marine', 'marines', 'mario', 'marion', 'marisa', 'marjorie', 'mark', 'marked', 'market', 'marketing', 'marking', 'marks', 'marlene', 'marley', 'marlon', 'marquis', 'marred', 'marriage', 'married', 'marries', 'marry', 'mars', 'marshall', 'mart', 'martha', 'martial', 'martian', 'martians', 'martin', 'martino', 'marty', 'marvel', 'marvellous', 'marvelous', 'marvelously', 'marvin', 'mary', 'marylee', 'mask', 'masked', 'masks', 'mason', 'masquerading', 'mass', 'massacre', 'masses', 'massey', 'massive', 'master', 'masterful', 'masterfully', 'mastermind', 'masterpiece', 'masterpieces', 'masters', 'masterson', 'mastroianni', 'match', 'matched', 'matches', 'mate', 'material', 'mates', 'mathieu', 'matrix', 'matt', 'mattei', 'matter', 'matters', 'matthau', 'matthew', 'mature', 'maturity', 'matuschek', 'maugham', 'maureen', 'maurice', 'maverick', 'max', 'maximum', 'may', 'maybe', 'mayhem', 'mayor', 'mcadams', 'mcbain', 'mccabe', 'mccarthy', 'mccartney', 'mccoy', 'mcdermott', 'mcdonald', 'mcgavin', 'mcintire', 'mclaglen', 'mcmahon', 'mcqueen', 'me', 'meadows', 'meal', 'mean', 'meandering', 'meaning', 'meaningful', 'meaningless', 'meanings', 'means', 'meant', 'meantime', 'meanwhile', 'measure', 'measures', 'meat', 'mechanic', 'mechanical', 'mechanics', 'media', 'medical', 'medicine', 'medieval', 'mediocre', 'mediocrity', 'medium', 'meek', 'meet', 'meeting', 'meets', 'meg', 'mega', 'megan', 'mel', 'melancholy', 'melbourne', 'melinda', 'melissa', 'melodrama', 'melodramatic', 'melody', 'melt', 'melting', 'melvyn', 'member', 'members', 'memoirs', 'memorable', 'memories', 'memory', 'men', 'menace', 'menacing', 'mendes', 'mental', 'mentality', 'mentally', 'mention', 'mentioned', 'mentioning', 'mentions', 'mentor', 'mercifully', 'mercilessly', 'mercy', 'mere', 'meredith', 'merely', 'merit', 'merits', 'mermaid', 'merry', 'meryl', 'mesmerizing', 'mess', 'message', 'messages', 'messed', 'messing', 'messy', 'met', 'metal', 'metaphor', 'meteor', 'method', 'methods', 'mexican', 'mexico', 'meyers', 'mgm', 'mia', 'miami', 'mice', 'michael', 'michaels', 'micheal', 'michelle', 'mick', 'mickey', 'mid', 'middle', 'midget', 'midler', 'midnight', 'midst', 'might', 'mighty', 'miike', 'mike', 'mild', 'mildly', 'mildred', 'mile', 'miles', 'military', 'milk', 'mill', 'millennium', 'miller', 'million', 'millionaire', 'millions', 'min', 'mind', 'minded', 'mindless', 'minds', 'mindset', 'mine', 'miner', 'ming', 'mini', 'minimal', 'minimum', 'mining', 'minion', 'miniseries', 'minister', 'minnelli', 'minor', 'minority', 'mins', 'minus', 'minute', 'minutes', 'mira', 'miracle', 'miracles', 'miraculous', 'miraculously', 'miranda', 'mirror', 'mirrors', 'misadventures', 'miscast', 'mischievous', 'miserable', 'miserably', 'misery', 'misfire', 'misfits', 'misfortune', 'misguided', 'misleading', 'mismatched', 'misogynistic', 'miss', 'missed', 'misses', 'missile', 'missing', 'mission', 'missions', 'mistake', 'mistaken', 'mistakes', 'mister', 'mistress', 'misty', 'misunderstandings', 'misunderstood', 'mitch', 'mitchell', 'mitchum', 'mix', 'mixed', 'mixing', 'mixture', 'miyazaki', 'mj', 'mo', 'mob', 'mobile', 'mobster', 'mock', 'mocking', 'mockumentary', 'mode', 'model', 'modeling', 'models', 'moderately', 'modern', 'modest', 'modesty', 'modine', 'moe', 'mol', 'mold', 'mole', 'molly', 'mom', 'moment', 'moments', 'momentum', 'mon', 'monastery', 'monday', 'money', 'monica', 'monitor', 'monk', 'monkey', 'monkeys', 'monks', 'monologue', 'monologues', 'monotonous', 'monster', 'monsters', 'montage', 'montages', 'montana', 'month', 'months', 'montrose', 'monty', 'monumental', 'mood', 'moody', 'moon', 'moonstruck', 'moore', 'moral', 'morality', 'morally', 'morals', 'moran', 'morbid', 'morbius', 'mordrid', 'more', 'moreover', 'morgan', 'morgue', 'mormon', 'mormons', 'morning', 'moron', 'moronic', 'morons', 'morris', 'morse', 'mortal', 'mortensen', 'moss', 'most', 'mostel', 'mostly', 'motel', 'mother', 'mothers', 'motif', 'motion', 'motions', 'motivated', 'motivation', 'motivations', 'motive', 'motives', 'motorcycle', 'mount', 'mountain', 'mountains', 'mourning', 'mouse', 'mouth', 'mouthed', 'mouths', 'move', 'moved', 'movement', 'movements', 'moves', 'movie', 'movies', 'moving', 'mpaa', 'mr', 'mrs', 'ms', 'mst3k', 'mtv', 'much', 'mud', 'muddled', 'multi', 'multiple', 'mum', 'mummy', 'mundane', 'muni', 'muppet', 'muppets', 'murder', 'murdered', 'murderer', 'murderers', 'murdering', 'murderous', 'murders', 'muriel', 'murky', 'murphy', 'murray', 'muscle', 'museum', 'music', 'musical', 'musicals', 'musician', 'musicians', 'muslim', 'muslims', 'must', 'mustache', 'mutant', 'mutants', 'mutated', 'mute', 'muted', 'mutual', 'my', 'myers', 'myra', 'myrna', 'myrtle', 'myself', 'mysteries', 'mysterious', 'mysteriously', 'mystery', 'mystical', 'mysticism', 'myth', 'mythical', 'mythology', 'nacho', 'nada', 'nail', 'nailed', 'nails', 'naive', 'naked', 'name', 'named', 'namely', 'names', 'nancy', 'napoleon', 'narrated', 'narration', 'narrative', 'narrator', 'narrow', 'naschy', 'nash', 'nasty', 'natali', 'natalie', 'nathan', 'nation', 'national', 'nations', 'native', 'natives', 'natural', 'naturally', 'nature', 'natured', 'naughty', 'nauseating', 'navy', 'nazi', 'nazis', 'nbc', 'nc', 'near', 'nearby', 'nearest', 'nearly', 'neat', 'neatly', 'necessarily', 'necessary', 'necessity', 'neck', 'ned', 'need', 'needed', 'needing', 'needless', 'needlessly', 'needs', 'neeson', 'negative', 'neglect', 'neglected', 'neighbor', 'neighborhood', 'neighbors', 'neighbours', 'neil', 'neill', 'neither', 'nelson', 'nemesis', 'neo', 'nephew', 'nerd', 'nerds', 'nerdy', 'nerve', 'nerves', 'nervous', 'nest', 'net', 'netflix', 'network', 'neurotic', 'neutral', 'nevada', 'never', 'nevertheless', 'new', 'newcombe', 'newcomer', 'newer', 'newly', 'newman', 'news', 'newspaper', 'newspapers', 'next', 'nice', 'nicely', 'nicholas', 'nicholson', 'nick', 'nicky', 'nicolas', 'nicole', 'niece', 'nielsen', 'night', 'nightclub', 'nightmare', 'nightmares', 'nightmarish', 'nights', 'nina', 'nine', 'nineties', 'ninety', 'ninja', 'ninjas', 'niro', 'niven', 'no', 'noah', 'noam', 'noble', 'nobody', 'nod', 'noel', 'noir', 'noise', 'noises', 'nolan', 'nolte', 'nominated', 'nomination', 'nominations', 'non', 'none', 'nonetheless', 'nonexistent', 'nonsense', 'nonsensical', 'noon', 'nope', 'nor', 'nora', 'noriko', 'norm', 'normal', 'normally', 'norman', 'norris', 'north', 'northam', 'northern', 'norton', 'nose', 'nostalgia', 'nostalgic', 'not', 'notable', 'notably', 'notch', 'note', 'noted', 'notes', 'noteworthy', 'nothing', 'notice', 'noticeable', 'noticed', 'notices', 'noting', 'notion', 'notions', 'notorious', 'novak', 'novel', 'novelist', 'novels', 'novelty', 'now', 'nowadays', 'nowhere', 'nt', 'nuance', 'nuanced', 'nuances', 'nuclear', 'nude', 'nudity', 'number', 'numbers', 'numbing', 'numbingly', 'numerous', 'nun', 'nuns', 'nurse', 'nut', 'nuts', 'nutshell', 'nutty', 'ny', 'nyc', 'object', 'objective', 'objects', 'obligatory', 'oblivion', 'oblivious', 'obnoxious', 'obscene', 'obscure', 'obscurity', 'observation', 'observations', 'observe', 'observed', 'obsessed', 'obsession', 'obsessive', 'obsolete', 'obstacles', 'obtain', 'obvious', 'obviously', 'occasion', 'occasional', 'occasionally', 'occasions', 'occult', 'occupation', 'occupied', 'occur', 'occurred', 'occurring', 'occurs', 'ocean', 'october', 'odd', 'oddball', 'oddity', 'oddly', 'odds', 'odyssey', 'of', 'off', 'offbeat', 'offend', 'offended', 'offense', 'offensive', 'offer', 'offered', 'offering', 'offerings', 'offers', 'office', 'officer', 'officers', 'official', 'officially', 'officials', 'offs', 'offside', 'often', 'ogre', 'oh', 'oil', 'ok', 'okay', 'ol', 'old', 'older', 'oldest', 'olds', 'oliver', 'olivia', 'olivier', 'ollie', 'olsen', 'olympia', 'omar', 'omen', 'ominous', 'on', 'once', 'one', 'ones', 'ongoing', 'online', 'only', 'onto', 'open', 'opened', 'opener', 'opening', 'openly', 'opens', 'opera', 'operate', 'operatic', 'operating', 'operation', 'opinion', 'opinions', 'opponent', 'opponents', 'opportunities', 'opportunity', 'opposed', 'opposite', 'opposition', 'oprah', 'optimistic', 'option', 'or', 'orange', 'orchestra', 'ordeal', 'order', 'ordered', 'orders', 'ordinary', 'organ', 'organic', 'organization', 'organized', 'oriental', 'oriented', 'origin', 'original', 'originality', 'originally', 'originals', 'origins', 'orlando', 'orleans', 'orphan', 'orphanage', 'orson', 'oscar', 'oscars', 'oshii', 'ossessione', 'ostensibly', 'othello', 'other', 'others', 'otherwise', 'otto', 'ought', 'our', 'ourselves', 'out', 'outbursts', 'outcome', 'outdated', 'outdoor', 'outer', 'outfit', 'outfits', 'outing', 'outlandish', 'outlaw', 'outline', 'output', 'outrageous', 'outrageously', 'outright', 'outs', 'outset', 'outside', 'outstanding', 'over', 'overacting', 'overall', 'overbearing', 'overblown', 'overboard', 'overcome', 'overdone', 'overlong', 'overlook', 'overlooked', 'overly', 'overrated', 'overs', 'overshadowed', 'overt', 'overtly', 'overtones', 'overweight', 'overwhelmed', 'overwhelming', 'owe', 'owed', 'owen', 'owes', 'owl', 'own', 'owned', 'owner', 'owners', 'owns', 'oz', 'pace', 'paced', 'pacific', 'pacing', 'pacino', 'pack', 'package', 'packed', 'packs', 'pad', 'padded', 'padding', 'page', 'pages', 'paid', 'pain', 'painful', 'painfully', 'pains', 'paint', 'painted', 'painter', 'painting', 'paintings', 'paints', 'pair', 'paired', 'pairing', 'pakeezah', 'pakistan', 'pal', 'palace', 'palance', 'pale', 'palermo', 'palestinian', 'palette', 'palm', 'palma', 'pals', 'paltrow', 'pamela', 'pan', 'panahi', 'pang', 'panic', 'pans', 'pants', 'paper', 'paperhouse', 'papers', 'par', 'parade', 'paradise', 'paragraph', 'parallel', 'parallels', 'paramount', 'paranoia', 'paranoid', 'parent', 'parents', 'paris', 'parisian', 'park', 'parker', 'parking', 'parks', 'parodies', 'parody', 'parrot', 'parsifal', 'parsons', 'part', 'partial', 'partially', 'participants', 'participate', 'participation', 'particular', 'particularly', 'parties', 'partition', 'partly', 'partner', 'partners', 'parts', 'party', 'pasolini', 'pass', 'passable', 'passage', 'passed', 'passengers', 'passes', 'passing', 'passion', 'passionate', 'passive', 'past', 'paste', 'pasteur', 'pat', 'patch', 'path', 'pathetic', 'pathos', 'paths', 'patience', 'patient', 'patients', 'patricia', 'patrick', 'patriotic', 'pattern', 'patton', 'patty', 'paul', 'paula', 'paulie', 'pause', 'pavarotti', 'paxton', 'pay', 'paycheck', 'paying', 'payne', 'payoff', 'pays', 'paz', 'pbs', 'pc', 'peace', 'peaceful', 'peak', 'peaks', 'pearl', 'peck', 'pecker', 'peckinpah', 'peculiar', 'pedestrian', 'pedro', 'pee', 'peers', 'pegg', 'peggy', 'pen', 'penelope', 'penis', 'penn', 'penned', 'penny', 'people', 'peoples', 'pepper', 'per', 'perceive', 'perceived', 'percent', 'perception', 'perfect', 'perfection', 'perfectly', 'perform', 'performance', 'performances', 'performed', 'performer', 'performers', 'performing', 'performs', 'perhaps', 'peril', 'period', 'periods', 'perkins', 'perky', 'perlman', 'permanent', 'permanently', 'perry', 'person', 'persona', 'personal', 'personalities', 'personality', 'personally', 'personnel', 'persons', 'perspective', 'perspectives', 'persuade', 'pertwee', 'peruvian', 'pervasive', 'perversion', 'pervert', 'perverted', 'pet', 'pete', 'peter', 'peters', 'peterson', 'petiot', 'pets', 'petty', 'pfeiffer', 'pg', 'phantasm', 'phantom', 'phase', 'phenomenal', 'phenomenon', 'phil', 'philadelphia', 'philip', 'phillip', 'phillips', 'philo', 'philosophical', 'philosophy', 'phoenix', 'phone', 'phones', 'phony', 'photo', 'photograph', 'photographed', 'photographer', 'photographs', 'photography', 'photos', 'phrase', 'phrases', 'phyllis', 'physical', 'physically', 'physics', 'pia', 'piano', 'pick', 'picked', 'pickford', 'picking', 'picks', 'picnic', 'picture', 'pictures', 'pie', 'piece', 'pieces', 'pierce', 'pierre', 'pig', 'pile', 'pilot', 'pilots', 'pimp', 'pin', 'pinjar', 'pink', 'piper', 'pirate', 'pirates', 'pistol', 'pit', 'pitch', 'pitched', 'pitiful', 'pits', 'pitt', 'pity', 'pivotal', 'pixar', 'pizza', 'place', 'placed', 'placement', 'places', 'placing', 'plague', 'plagued', 'plain', 'plan', 'plane', 'planes', 'planet', 'planned', 'planning', 'plans', 'plant', 'planted', 'plastic', 'plate', 'platform', 'platoon', 'plausible', 'play', 'playboy', 'played', 'player', 'players', 'playful', 'playing', 'plays', 'playwright', 'pleasant', 'pleasantly', 'please', 'pleased', 'pleasing', 'pleasure', 'pleasures', 'plenty', 'plight', 'plodding', 'plods', 'plot', 'plots', 'plotted', 'plotting', 'plug', 'plummer', 'plus', 'pocket', 'poe', 'poem', 'poet', 'poetic', 'poetry', 'poignant', 'point', 'pointed', 'pointing', 'pointless', 'pointlessly', 'points', 'poison', 'poke', 'pokemon', 'poker', 'polanski', 'polar', 'pole', 'police', 'policeman', 'policemen', 'policies', 'policy', 'polish', 'polished', 'political', 'politically', 'politician', 'politicians', 'politics', 'polly', 'pompous', 'pond', 'pony', 'poo', 'pool', 'poor', 'poorly', 'pop', 'popcorn', 'popped', 'popping', 'pops', 'popular', 'popularity', 'populated', 'population', 'porn', 'porno', 'pornographic', 'pornography', 'port', 'porter', 'portion', 'portions', 'portman', 'portrait', 'portray', 'portrayal', 'portrayals', 'portrayed', 'portraying', 'portrays', 'portuguese', 'pose', 'poses', 'posey', 'posh', 'posing', 'position', 'positive', 'positively', 'possess', 'possessed', 'possesses', 'possession', 'possibilities', 'possibility', 'possible', 'possibly', 'post', 'posted', 'poster', 'posters', 'postman', 'pot', 'potent', 'potential', 'potentially', 'potter', 'pound', 'pounds', 'poverty', 'pow', 'powell', 'power', 'powered', 'powerful', 'powers', 'pows', 'practical', 'practically', 'practice', 'practices', 'praise', 'praised', 'praising', 'prank', 'pray', 'pre', 'preach', 'preacher', 'preaching', 'preachy', 'precious', 'precise', 'precisely', 'predator', 'predecessor', 'predecessors', 'predict', 'predictability', 'predictable', 'predictably', 'predicted', 'prefer', 'preferably', 'preferred', 'pregnant', 'prejudice', 'prejudices', 'prem', 'premiere', 'premiered', 'preminger', 'premise', 'premises', 'prepare', 'prepared', 'preparing', 'preposterous', 'prequel', 'presence', 'present', 'presentation', 'presented', 'presenting', 'presents', 'preserved', 'president', 'presidential', 'press', 'pressed', 'pressure', 'preston', 'presumably', 'presume', 'presumed', 'pretend', 'pretending', 'pretends', 'pretentious', 'pretty', 'prevalent', 'prevent', 'prevents', 'preview', 'previews', 'previous', 'previously', 'prey', 'price', 'priceless', 'pride', 'priest', 'priests', 'primarily', 'primary', 'prime', 'primitive', 'prince', 'princess', 'principal', 'principals', 'principle', 'principles', 'print', 'prints', 'prior', 'prison', 'prisoner', 'prisoners', 'private', 'prize', 'pro', 'probably', 'problem', 'problems', 'proceed', 'proceedings', 'proceeds', 'process', 'proclaimed', 'produce', 'produced', 'producer', 'producers', 'produces', 'producing', 'product', 'production', 'productions', 'products', 'profanity', 'profession', 'professional', 'professionals', 'professor', 'profile', 'profit', 'profits', 'profound', 'profoundly', 'program', 'programme', 'programming', 'programs', 'progress', 'progressed', 'progresses', 'progression', 'progressive', 'progressively', 'project', 'projected', 'projection', 'projects', 'prolific', 'prolonged', 'prom', 'prominent', 'promise', 'promised', 'promises', 'promising', 'promote', 'promoted', 'promoting', 'promotion', 'promptly', 'prone', 'pronounced', 'proof', 'prop', 'propaganda', 'proper', 'properly', 'property', 'prophecy', 'prophet', 'proportion', 'proportions', 'props', 'pros', 'prostitute', 'prostitutes', 'protagonist', 'protagonists', 'protect', 'protecting', 'protection', 'protective', 'protest', 'protocol', 'proud', 'proudly', 'prove', 'proved', 'proves', 'provide', 'provided', 'provides', 'providing', 'proving', 'provocative', 'provoking', 'ps', 'pseudo', 'psyche', 'psychedelic', 'psychiatrist', 'psychic', 'psycho', 'psychological', 'psychologist', 'psychology', 'psychopath', 'psychopathic', 'psychotic', 'public', 'publicity', 'published', 'puerto', 'pull', 'pulled', 'pulling', 'pulls', 'pulp', 'pulse', 'pumbaa', 'pun', 'punch', 'punched', 'punches', 'punishment', 'punk', 'puppet', 'puppets', 'puppy', 'purchase', 'purchased', 'pure', 'purely', 'purple', 'purpose', 'purposes', 'purse', 'pursue', 'pursued', 'pursuit', 'push', 'pushed', 'pushes', 'pushing', 'put', 'puts', 'putting', 'puzzle', 'puzzled', 'puzzling', 'pym', 'python', 'quaid', 'quaint', 'qualifies', 'qualify', 'qualities', 'quality', 'quantum', 'quarter', 'quarters', 'quasi', 'queen', 'queens', 'quentin', 'quest', 'question', 'questionable', 'questioning', 'questions', 'quick', 'quickly', 'quiet', 'quietly', 'quincy', 'quinn', 'quintessential', 'quirks', 'quirky', 'quit', 'quite', 'quote', 'quotes', 'rabbit', 'rabid', 'race', 'races', 'rachel', 'racial', 'racing', 'racism', 'racist', 'rack', 'radar', 'radiation', 'radical', 'radio', 'radioactive', 'rage', 'raging', 'raid', 'raider', 'raiders', 'railroad', 'rain', 'rainer', 'raines', 'rainy', 'raise', 'raised', 'raises', 'raising', 'raj', 'ralph', 'ram', 'rambling', 'rambo', 'ramon', 'ramones', 'rampage', 'rampant', 'ran', 'ranch', 'randall', 'randolph', 'random', 'randomly', 'randy', 'range', 'rangers', 'ranging', 'rank', 'ranks', 'ranma', 'rant', 'ranting', 'rao', 'rap', 'rape', 'raped', 'rapes', 'rapid', 'rapidly', 'rapist', 'rapture', 'rare', 'rarely', 'rat', 'rate', 'rated', 'rates', 'rather', 'rating', 'ratings', 'ratio', 'rational', 'rats', 'ratso', 'raunchy', 'rave', 'raving', 'ravishing', 'raw', 'ray', 'raymond', 'razor', 'razzie', 're', 'rea', 'reach', 'reached', 'reaches', 'reaching', 'react', 'reaction', 'reactions', 'read', 'reader', 'readers', 'readily', 'reading', 'reads', 'ready', 'reagan', 'real', 'realise', 'realised', 'realises', 'realism', 'realist', 'realistic', 'realistically', 'realities', 'reality', 'realization', 'realize', 'realized', 'realizes', 'realizing', 'really', 'realm', 'rear', 'reason', 'reasonable', 'reasonably', 'reasoning', 'reasons', 'rebecca', 'rebel', 'rebellion', 'rebellious', 'rebels', 'recall', 'recalls', 'recapture', 'receive', 'received', 'receives', 'receiving', 'recent', 'recently', 'recipe', 'reckless', 'recognition', 'recognizable', 'recognize', 'recognized', 'recommend', 'recommendation', 'recommended', 'recommending', 'record', 'recorded', 'recording', 'records', 'recover', 'recovering', 'recreation', 'recruits', 'recurring', 'recycled', 'red', 'redeem', 'redeeming', 'redemption', 'redford', 'redneck', 'reduced', 'redundant', 'reed', 'reel', 'reese', 'reeve', 'reeves', 'refer', 'reference', 'references', 'referred', 'referring', 'refers', 'reflect', 'reflected', 'reflection', 'reflects', 'refreshing', 'refuge', 'refuse', 'refused', 'refuses', 'regal', 'regard', 'regarded', 'regarding', 'regardless', 'regards', 'regime', 'region', 'register', 'registered', 'regret', 'regrets', 'regular', 'regularly', 'rehash', 'reid', 'reign', 'reincarnation', 'reiser', 'rejected', 'rejection', 'rejects', 'relate', 'related', 'relates', 'relating', 'relation', 'relations', 'relationship', 'relationships', 'relative', 'relatively', 'relatives', 'relax', 'relaxed', 'relaxing', 'release', 'released', 'releases', 'releasing', 'relentless', 'relentlessly', 'relevance', 'relevant', 'reliable', 'relief', 'relies', 'religion', 'religious', 'reluctant', 'reluctantly', 'rely', 'relying', 'remade', 'remain', 'remainder', 'remained', 'remaining', 'remains', 'remake', 'remakes', 'remark', 'remarkable', 'remarkably', 'remarks', 'remember', 'remembered', 'remembering', 'remembers', 'remind', 'reminded', 'reminder', 'reminding', 'reminds', 'reminiscent', 'remorse', 'remote', 'remotely', 'remove', 'removed', 'renaissance', 'render', 'rendered', 'rendering', 'rendition', 'rene', 'reno', 'rent', 'rental', 'rented', 'renting', 'rents', 'repeat', 'repeated', 'repeatedly', 'repeating', 'repeats', 'repetitive', 'replace', 'replaced', 'replacing', 'replay', 'replies', 'reply', 'report', 'reported', 'reportedly', 'reporter', 'reports', 'represent', 'representation', 'represented', 'representing', 'represents', 'repressed', 'republic', 'repulsive', 'reputation', 'request', 'require', 'required', 'requires', 'reruns', 'rescue', 'rescued', 'research', 'resemblance', 'resemble', 'resembles', 'resembling', 'reserved', 'resident', 'residents', 'resist', 'resistance', 'resolution', 'resolve', 'resolved', 'resort', 'resources', 'respect', 'respectable', 'respected', 'respectful', 'respective', 'respectively', 'respects', 'respond', 'responds', 'response', 'responsibility', 'responsible', 'rest', 'restaurant', 'restoration', 'restored', 'restrained', 'restraint', 'result', 'resulted', 'resulting', 'results', 'resume', 'resurrect', 'resurrection', 'retarded', 'retired', 'retirement', 'retrieve', 'retro', 'retrospect', 'return', 'returned', 'returning', 'returns', 'reunion', 'reunite', 'reunited', 'reve', 'reveal', 'revealed', 'revealing', 'reveals', 'revelation', 'revenge', 'reverend', 'reverse', 'reversed', 'review', 'reviewed', 'reviewer', 'reviewers', 'reviewing', 'reviews', 'revival', 'revolt', 'revolution', 'revolutionary', 'revolver', 'revolves', 'revolving', 'reward', 'rewarded', 'rewarding', 'rex', 'reynolds', 'rhyme', 'rhymes', 'rhythm', 'ricardo', 'rice', 'rich', 'richard', 'richards', 'richardson', 'richly', 'rick', 'ricky', 'rico', 'rid', 'ridden', 'ride', 'rider', 'riders', 'rides', 'ridiculous', 'ridiculously', 'riding', 'riff', 'rifle', 'right', 'righteous', 'rightfully', 'rightly', 'rights', 'ring', 'ringing', 'rings', 'riot', 'rip', 'ripoff', 'ripped', 'ripper', 'ripping', 'rips', 'rise', 'rises', 'rising', 'risk', 'risks', 'rita', 'ritchie', 'ritter', 'ritual', 'rival', 'rivalry', 'rivals', 'river', 'rivers', 'riveting', 'rizzo', 'rko', 'roach', 'road', 'rob', 'robbed', 'robbers', 'robbery', 'robbie', 'robbing', 'robbins', 'robby', 'robert', 'roberts', 'robertson', 'robin', 'robinson', 'robot', 'robotic', 'robots', 'rochester', 'rock', 'rocker', 'rocket', 'rockets', 'rocks', 'rocky', 'rod', 'roddy', 'rodney', 'rodriguez', 'roger', 'rogers', 'rogue', 'rohmer', 'role', 'roles', 'roll', 'rolled', 'roller', 'rolling', 'rolls', 'rom', 'roman', 'romance', 'romances', 'romanian', 'romano', 'romantic', 'rome', 'romeo', 'romero', 'romp', 'ron', 'ronald', 'roof', 'rookie', 'room', 'roommate', 'roommates', 'rooms', 'rooney', 'root', 'rooting', 'roots', 'rope', 'ropes', 'roscoe', 'rose', 'rosemary', 'rosenstrasse', 'ross', 'roth', 'rotten', 'rough', 'roughly', 'round', 'rounded', 'rounds', 'rourke', 'rousing', 'route', 'routine', 'routines', 'row', 'rowlands', 'roy', 'royal', 'roz', 'rubber', 'rubbish', 'ruby', 'rude', 'rugged', 'ruin', 'ruined', 'ruining', 'ruins', 'rukh', 'rule', 'ruled', 'rules', 'rumor', 'rumors', 'run', 'runaway', 'runner', 'running', 'runs', 'rupert', 'rural', 'rush', 'rushed', 'russ', 'russell', 'russia', 'russian', 'russians', 'russo', 'rusty', 'ruth', 'ruthless', 'rvd', 'ryan', 'sabrina', 'sabu', 'sack', 'sacrifice', 'sacrificed', 'sacrifices', 'sacrificing', 'sad', 'saddest', 'sadistic', 'sadly', 'sadness', 'safe', 'safely', 'safety', 'saga', 'said', 'saif', 'sailor', 'saint', 'saints', 'sake', 'sale', 'salem', 'sales', 'salesman', 'sally', 'salman', 'saloon', 'salt', 'salvage', 'salvation', 'sam', 'samantha', 'same', 'sammi', 'sammo', 'sammy', 'samuel', 'samurai', 'san', 'sand', 'sanders', 'sandler', 'sandra', 'sandy', 'sane', 'sang', 'sanity', 'santa', 'sap', 'sappy', 'sara', 'sarah', 'sarandon', 'sarcasm', 'sarcastic', 'sarne', 'sasquatch', 'sassy', 'sat', 'satan', 'satanic', 'satellite', 'satire', 'satirical', 'satisfaction', 'satisfactory', 'satisfied', 'satisfy', 'satisfying', 'saturated', 'saturday', 'savage', 'savalas', 'save', 'saved', 'saves', 'saving', 'savior', 'saw', 'saxon', 'say', 'saying', 'says', 'sayuri', 'scale', 'scalise', 'scan', 'scandal', 'scanners', 'scare', 'scarecrow', 'scarecrows', 'scared', 'scares', 'scarface', 'scarier', 'scariest', 'scaring', 'scarlett', 'scary', 'scenario', 'scenarios', 'scene', 'scenery', 'scenes', 'schedule', 'scheme', 'schemes', 'scheming', 'schizophrenic', 'schlock', 'schneider', 'school', 'schools', 'schwarzenegger', 'sci', 'science', 'scientific', 'scientist', 'scientists', 'scifi', 'scooby', 'scoop', 'scope', 'score', 'scored', 'scores', 'scorpion', 'scorsese', 'scotland', 'scott', 'scottish', 'scratch', 'scratching', 'scream', 'screamed', 'screaming', 'screams', 'screen', 'screened', 'screening', 'screenplay', 'screenplays', 'screens', 'screenwriter', 'screenwriters', 'screw', 'screwball', 'screwed', 'script', 'scripted', 'scripting', 'scripts', 'scriptwriter', 'scriptwriters', 'scrooge', 'scum', 'se', 'sea', 'seagal', 'seal', 'sealed', 'sean', 'search', 'searched', 'searching', 'seas', 'season', 'seasoned', 'seasons', 'seat', 'seats', 'seattle', 'sebastian', 'seberg', 'secluded', 'second', 'secondary', 'secondly', 'seconds', 'secret', 'secretary', 'secretly', 'secrets', 'section', 'sections', 'secure', 'security', 'seduce', 'seducing', 'seductive', 'see', 'seed', 'seedy', 'seeing', 'seek', 'seeking', 'seeks', 'seem', 'seemed', 'seeming', 'seemingly', 'seems', 'seen', 'sees', 'segal', 'segment', 'segments', 'seinfeld', 'seldom', 'selected', 'selection', 'self', 'selfish', 'sell', 'seller', 'sellers', 'selling', 'sells', 'sematary', 'semblance', 'semi', 'senator', 'send', 'sending', 'sends', 'senior', 'sensation', 'sense', 'senseless', 'senses', 'sensibilities', 'sensibility', 'sensible', 'sensitive', 'sensitivity', 'sensual', 'sent', 'sentence', 'sentences', 'sentiment', 'sentimental', 'sentimentality', 'sentinel', 'separate', 'separated', 'separately', 'september', 'sequel', 'sequels', 'sequence', 'sequences', 'serbian', 'serbs', 'sergeant', 'sergio', 'serial', 'serials', 'series', 'serious', 'seriously', 'seriousness', 'serum', 'servant', 'servants', 'serve', 'served', 'serves', 'service', 'services', 'serving', 'sesame', 'session', 'set', 'seth', 'sets', 'setting', 'settings', 'settle', 'settled', 'setup', 'seuss', 'seven', 'seventh', 'seventies', 'several', 'severe', 'severed', 'severely', 'sewer', 'sex', 'sexes', 'sexist', 'sexual', 'sexuality', 'sexually', 'sexy', 'seymour', 'sf', 'sg', 'sgt', 'sh', 'shades', 'shadow', 'shadows', 'shady', 'shaggy', 'shah', 'shahid', 'shake', 'shakes', 'shakespeare', 'shakespearean', 'shaking', 'shaky', 'shall', 'shallow', 'shame', 'shameful', 'shameless', 'shamelessly', 'shanghai', 'shannon', 'shaolin', 'shape', 'shaped', 'share', 'shared', 'shares', 'sharing', 'shark', 'sharks', 'sharon', 'sharp', 'shatner', 'shattering', 'shaun', 'shaw', 'she', 'shea', 'shearer', 'shed', 'sheedy', 'sheen', 'sheep', 'sheer', 'sheets', 'sheila', 'shelf', 'shell', 'shelley', 'shelly', 'shelter', 'shelves', 'shepard', 'shepherd', 'sheridan', 'sheriff', 'sherlock', 'shield', 'shift', 'shifts', 'shin', 'shine', 'shines', 'shining', 'shiny', 'ship', 'ships', 'shirley', 'shirt', 'shirts', 'sho', 'shock', 'shocked', 'shocker', 'shocking', 'shockingly', 'shocks', 'shoddy', 'shoe', 'shoes', 'sholay', 'shoot', 'shooting', 'shootout', 'shoots', 'shop', 'shopping', 'shops', 'shore', 'short', 'shortcomings', 'shortened', 'shorter', 'shortly', 'shorts', 'shot', 'shotgun', 'shots', 'should', 'shoulder', 'shoulders', 'shouldn', 'shout', 'shouting', 'shoved', 'show', 'showcase', 'showcases', 'showdown', 'showed', 'shower', 'showing', 'shown', 'shows', 'showtime', 'shred', 'shrek', 'shrill', 'shut', 'shy', 'sibling', 'siblings', 'sick', 'sickening', 'sickness', 'sid', 'side', 'sided', 'sidekick', 'sides', 'sidewalk', 'sidney', 'siege', 'sigh', 'sight', 'sights', 'sign', 'signal', 'signature', 'signed', 'significance', 'significant', 'significantly', 'signs', 'silence', 'silent', 'silliness', 'silly', 'silver', 'silverstone', 'simba', 'similar', 'similarities', 'similarity', 'similarly', 'simmons', 'simon', 'simple', 'simpler', 'simplicity', 'simplistic', 'simply', 'simpson', 'simpsons', 'simultaneously', 'sin', 'sinatra', 'since', 'sincere', 'sincerely', 'sincerity', 'sing', 'singer', 'singers', 'singing', 'single', 'singles', 'sings', 'sinister', 'sink', 'sinking', 'sinks', 'sins', 'sir', 'sirk', 'sissy', 'sister', 'sisters', 'sit', 'sitcom', 'sitcoms', 'site', 'sites', 'sits', 'sitting', 'situation', 'situations', 'six', 'sixth', 'sixties', 'size', 'sized', 'skeptical', 'sketch', 'sketches', 'skill', 'skilled', 'skills', 'skimpy', 'skin', 'skinned', 'skinny', 'skip', 'skipping', 'skirt', 'skit', 'skits', 'skull', 'sky', 'skywalker', 'slack', 'slackers', 'slam', 'slap', 'slapped', 'slapstick', 'slash', 'slasher', 'slashers', 'slater', 'slaughter', 'slaughtered', 'slave', 'slavery', 'slaves', 'sleaze', 'sleazy', 'sleep', 'sleeping', 'sleeps', 'sleepwalkers', 'sleepy', 'sleeve', 'slept', 'sleuth', 'slew', 'slice', 'slick', 'slide', 'slight', 'slightest', 'slightly', 'slim', 'slimy', 'slip', 'slips', 'sloane', 'sloppy', 'slow', 'slower', 'slowly', 'slugs', 'slut', 'slutty', 'sly', 'small', 'smaller', 'smallest', 'smallville', 'smarmy', 'smart', 'smarter', 'smash', 'smashes', 'smell', 'smile', 'smiles', 'smiling', 'smith', 'smitten', 'smoke', 'smoking', 'smooth', 'smoothly', 'smug', 'smuggling', 'snake', 'snakes', 'snap', 'snatch', 'sneak', 'sneaking', 'sniper', 'snipes', 'snippets', 'snl', 'snoop', 'snow', 'snowman', 'snowy', 'snuff', 'so', 'soap', 'sob', 'sober', 'soccer', 'social', 'socially', 'societal', 'societies', 'society', 'soderbergh', 'sofia', 'soft', 'software', 'sol', 'sold', 'soldier', 'soldiers', 'sole', 'solely', 'solid', 'solidly', 'solo', 'solution', 'solve', 'solved', 'solving', 'somber', 'some', 'somebody', 'someday', 'somehow', 'someone', 'something', 'somethings', 'sometime', 'sometimes', 'somewhat', 'somewhere', 'son', 'song', 'songs', 'sonny', 'sons', 'soo', 'soon', 'sooner', 'soooo', 'sophia', 'sophie', 'sophisticated', 'sophistication', 'soprano', 'sopranos', 'sordid', 'sore', 'sorely', 'sorrow', 'sorry', 'sort', 'sorts', 'sorvino', 'sought', 'soul', 'souls', 'sound', 'sounded', 'sounding', 'sounds', 'soundtrack', 'soup', 'sour', 'source', 'sources', 'south', 'southern', 'soviet', 'sox', 'soylent', 'space', 'spaces', 'spacey', 'spaghetti', 'spain', 'span', 'spanish', 'spare', 'spared', 'spark', 'sparks', 'sparse', 'speak', 'speaking', 'speaks', 'special', 'specially', 'species', 'specific', 'specifically', 'spectacle', 'spectacular', 'spectacularly', 'speech', 'speeches', 'speechless', 'speed', 'speeding', 'spell', 'spelled', 'spelling', 'spells', 'spencer', 'spend', 'spending', 'spends', 'spent', 'spice', 'spider', 'spielberg', 'spies', 'spike', 'spin', 'spinal', 'spine', 'spinning', 'spiral', 'spirit', 'spirited', 'spirits', 'spiritual', 'spit', 'spite', 'splatter', 'splendid', 'split', 'spock', 'spoil', 'spoiled', 'spoiler', 'spoilers', 'spoiling', 'spoke', 'spoken', 'spontaneous', 'spoof', 'spoofs', 'spooky', 'spoon', 'sport', 'sporting', 'sports', 'spot', 'spotlight', 'spots', 'spotted', 'spouse', 'spray', 'spread', 'spree', 'spring', 'springer', 'sprinkled', 'spy', 'squad', 'square', 'squirm', 'sr', 'st', 'stab', 'stabbed', 'stabbing', 'stabs', 'stack', 'stadium', 'staff', 'stage', 'staged', 'stages', 'staging', 'stairs', 'stairway', 'stake', 'stakes', 'stale', 'stalked', 'stalker', 'stalking', 'stalks', 'stallone', 'stan', 'stance', 'stand', 'standard', 'standards', 'standing', 'standout', 'standpoint', 'stands', 'stanley', 'stanwyck', 'star', 'stardom', 'stardust', 'stare', 'stares', 'stargate', 'staring', 'stark', 'starred', 'starring', 'stars', 'starship', 'start', 'started', 'starters', 'starting', 'startling', 'starts', 'starving', 'state', 'stated', 'statement', 'statements', 'states', 'static', 'stating', 'station', 'stations', 'statue', 'status', 'stay', 'stayed', 'staying', 'stays', 'steady', 'steal', 'stealing', 'steals', 'stealth', 'steam', 'steaming', 'steamy', 'steel', 'steele', 'steer', 'stella', 'stellar', 'step', 'stephanie', 'stephen', 'stepmother', 'stepped', 'steps', 'stereotype', 'stereotyped', 'stereotypes', 'stereotypical', 'sterling', 'stern', 'steve', 'steven', 'stevens', 'stevenson', 'stewart', 'stick', 'sticking', 'sticks', 'stiff', 'stifler', 'stiles', 'still', 'stiller', 'stills', 'stilted', 'stimulating', 'stink', 'stinker', 'stinks', 'stirring', 'stock', 'stoic', 'stole', 'stolen', 'stoltz', 'stomach', 'stone', 'stoned', 'stones', 'stood', 'stooges', 'stop', 'stopped', 'stopping', 'stops', 'store', 'stores', 'stories', 'storm', 'story', 'storyline', 'storytelling', 'straight', 'straightforward', 'strain', 'strained', 'stranded', 'strange', 'strangely', 'stranger', 'strangers', 'strathairn', 'straw', 'streak', 'stream', 'streep', 'street', 'streets', 'streisand', 'strength', 'strengths', 'stress', 'stretch', 'stretched', 'stretching', 'stricken', 'strict', 'strictly', 'strike', 'strikes', 'striking', 'strikingly', 'string', 'strings', 'strip', 'stripped', 'stripper', 'stroke', 'strong', 'stronger', 'strongest', 'strongly', 'struck', 'structure', 'structured', 'struggle', 'struggled', 'struggles', 'struggling', 'strung', 'stuart', 'stuck', 'stud', 'student', 'students', 'studied', 'studies', 'studio', 'studios', 'study', 'studying', 'stuff', 'stuffed', 'stumble', 'stumbled', 'stumbles', 'stunned', 'stunning', 'stunningly', 'stunt', 'stunts', 'stupid', 'stupidest', 'stupidity', 'style', 'styled', 'styles', 'stylish', 'stylized', 'suave', 'sub', 'subdued', 'subject', 'subjected', 'subjects', 'sublime', 'submarine', 'subplot', 'subplots', 'subsequent', 'subsequently', 'substance', 'substantial', 'substitute', 'subtext', 'subtitled', 'subtitles', 'subtle', 'subtleties', 'subtlety', 'subtly', 'suburban', 'suburbia', 'subway', 'succeed', 'succeeded', 'succeeding', 'succeeds', 'success', 'successful', 'successfully', 'succession', 'such', 'suck', 'sucked', 'sucker', 'sucking', 'sucks', 'sudden', 'suddenly', 'sue', 'suffer', 'suffered', 'suffering', 'suffers', 'suffice', 'sufficient', 'sugar', 'suggest', 'suggested', 'suggesting', 'suggestion', 'suggests', 'suicide', 'suit', 'suitable', 'suitably', 'suite', 'suited', 'suits', 'sullivan', 'sum', 'summary', 'summed', 'summer', 'sums', 'sun', 'sundance', 'sunday', 'sung', 'sunk', 'sunny', 'sunrise', 'sunset', 'sunshine', 'super', 'superb', 'superbly', 'superficial', 'superfluous', 'superhero', 'superior', 'superiors', 'superman', 'supermarket', 'supernatural', 'superstar', 'supply', 'support', 'supported', 'supporter', 'supporting', 'supportive', 'supports', 'suppose', 'supposed', 'supposedly', 'supremacy', 'supreme', 'sure', 'surely', 'surface', 'surfers', 'surfing', 'surgeon', 'surgery', 'surprise', 'surprised', 'surprises', 'surprising', 'surprisingly', 'surreal', 'surrealism', 'surrender', 'surrogate', 'surround', 'surrounded', 'surrounding', 'surroundings', 'survival', 'survive', 'survived', 'survives', 'surviving', 'survivor', 'survivors', 'susan', 'susannah', 'suspect', 'suspected', 'suspects', 'suspend', 'suspense', 'suspenseful', 'suspension', 'suspicion', 'suspicions', 'suspicious', 'sustain', 'sustained', 'sutherland', 'suzanne', 'swallow', 'swanson', 'swear', 'swearing', 'sweat', 'sweden', 'swedish', 'sweeping', 'sweet', 'swept', 'swim', 'swimming', 'swing', 'swinging', 'swiss', 'switch', 'switched', 'switches', 'switching', 'sword', 'swordplay', 'swords', 'sydney', 'sykes', 'sylvester', 'sylvia', 'symbol', 'symbolic', 'symbolism', 'symbols', 'sympathetic', 'sympathize', 'sympathy', 'sync', 'syndrome', 'synopsis', 'system', 'systems', 'table', 'tables', 'taboo', 'tacked', 'tacky', 'tactics', 'tad', 'tag', 'tail', 'takashi', 'take', 'taken', 'taker', 'takes', 'taking', 'tale', 'talent', 'talented', 'talents', 'tales', 'talk', 'talked', 'talking', 'talks', 'talky', 'tall', 'tame', 'tank', 'tanks', 'tap', 'tape', 'taped', 'tapes', 'tara', 'tarantino', 'target', 'targeted', 'targets', 'tarkovsky', 'tarzan', 'task', 'tasks', 'tassi', 'taste', 'tasteful', 'tasteless', 'tastes', 'tasty', 'taught', 'taut', 'tax', 'taxi', 'taylor', 'tcm', 'tea', 'teach', 'teacher', 'teachers', 'teaches', 'teaching', 'team', 'teamed', 'teams', 'tear', 'tears', 'tech', 'technical', 'technically', 'technicolor', 'technique', 'techniques', 'technology', 'ted', 'teddy', 'tedious', 'teen', 'teenage', 'teenager', 'teenagers', 'teens', 'teeth', 'television', 'tell', 'telling', 'tells', 'telly', 'temper', 'tempered', 'temple', 'temporary', 'tempted', 'ten', 'tenant', 'tend', 'tended', 'tendency', 'tender', 'tenderness', 'tends', 'tense', 'tension', 'term', 'terminator', 'terms', 'terrain', 'terrible', 'terribly', 'terrific', 'terrified', 'terrifying', 'territory', 'terror', 'terrorism', 'terrorist', 'terrorists', 'terrorized', 'terry', 'tess', 'test', 'testament', 'tested', 'testimony', 'testing', 'texas', 'text', 'textbook', 'texture', 'thai', 'thailand', 'than', 'thank', 'thankful', 'thankfully', 'thankless', 'thanks', 'that', 'thats', 'thaw', 'the', 'theater', 'theaters', 'theatre', 'theatrical', 'their', 'theirs', 'thelma', 'them', 'theme', 'themed', 'themes', 'themselves', 'then', 'theo', 'theodore', 'theories', 'theory', 'therapist', 'therapy', 'there', 'thereafter', 'thereby', 'therefore', 'therein', 'thereof', 'these', 'they', 'thick', 'thief', 'thieves', 'thin', 'thing', 'things', 'think', 'thinking', 'thinks', 'thinner', 'third', 'thirds', 'thirteen', 'thirties', 'thirty', 'this', 'tho', 'thomas', 'thompson', 'thorn', 'thoroughly', 'those', 'though', 'thought', 'thoughtful', 'thoughts', 'thousand', 'thousands', 'thread', 'threat', 'threaten', 'threatened', 'threatening', 'threatens', 'three', 'threw', 'thrill', 'thrilled', 'thriller', 'thrillers', 'thrilling', 'thrills', 'throat', 'throne', 'through', 'throughout', 'throw', 'throwaway', 'throwing', 'thrown', 'throws', 'thru', 'thrust', 'thug', 'thugs', 'thumb', 'thumbs', 'thunderbirds', 'thurman', 'thus', 'ticket', 'tickets', 'tide', 'tie', 'tied', 'tierney', 'ties', 'tiger', 'tigers', 'tight', 'tightly', 'till', 'tim', 'timberlake', 'time', 'timed', 'timeless', 'timer', 'times', 'timing', 'timon', 'timothy', 'tin', 'tintin', 'tiny', 'tip', 'tips', 'tire', 'tired', 'tiresome', 'tiring', 'titanic', 'title', 'titled', 'titles', 'tits', 'titular', 'to', 'tobe', 'toby', 'today', 'todays', 'todd', 'toes', 'togar', 'together', 'toilet', 'token', 'tokyo', 'told', 'tolerable', 'tolerance', 'tolerate', 'tolstoy', 'tom', 'tomato', 'tomatoes', 'tomb', 'tomei', 'tommy', 'tomorrow', 'ton', 'tone', 'toned', 'tones', 'tongue', 'toni', 'tonight', 'tons', 'tony', 'too', 'took', 'tool', 'toolbox', 'toole', 'tools', 'tooth', 'top', 'topic', 'topics', 'topless', 'tops', 'torch', 'torment', 'tormented', 'torn', 'toro', 'toronto', 'torture', 'tortured', 'torturing', 'toss', 'tossed', 'total', 'totally', 'touch', 'touched', 'touches', 'touching', 'tough', 'tour', 'tourist', 'tourists', 'tow', 'toward', 'towards', 'tower', 'towers', 'town', 'towns', 'townsfolk', 'townspeople', 'toxic', 'toy', 'toys', 'trace', 'tracey', 'track', 'tracking', 'tracks', 'tracy', 'trade', 'trademark', 'tradition', 'traditional', 'traditions', 'traffic', 'tragedy', 'tragic', 'trail', 'trailer', 'trailers', 'train', 'trained', 'training', 'trains', 'traits', 'tramp', 'trance', 'transcends', 'transfer', 'transform', 'transformation', 'transformations', 'transformed', 'transformers', 'transforms', 'transition', 'transitions', 'translate', 'translated', 'translation', 'transparent', 'transplant', 'transport', 'transported', 'trap', 'trapped', 'traps', 'trash', 'trashy', 'trauma', 'traumatic', 'traumatized', 'travel', 'traveled', 'traveling', 'travelling', 'travels', 'travesty', 'travis', 'travolta', 'treasure', 'treat', 'treated', 'treating', 'treatment', 'treats', 'tree', 'trees', 'trek', 'tremendous', 'tremendously', 'trend', 'trendy', 'triad', 'trial', 'trials', 'triangle', 'tribe', 'tribute', 'trick', 'tricked', 'tricks', 'tricky', 'tried', 'trier', 'tries', 'trigger', 'trilogy', 'trio', 'trip', 'tripe', 'triple', 'trish', 'trite', 'triumph', 'triumphs', 'trivia', 'trivial', 'troma', 'troopers', 'troops', 'trouble', 'troubled', 'troubles', 'truck', 'true', 'truly', 'truman', 'trust', 'trusted', 'truth', 'truthful', 'truths', 'try', 'trying', 'tube', 'tucci', 'tucker', 'tune', 'tunes', 'tunnel', 'turd', 'turkey', 'turkish', 'turmoil', 'turn', 'turned', 'turner', 'turning', 'turns', 'turtle', 'turturro', 'tv', 'twelve', 'twentieth', 'twenty', 'twice', 'twilight', 'twin', 'twins', 'twist', 'twisted', 'twists', 'twitch', 'two', 'tyler', 'type', 'types', 'typical', 'typically', 'uber', 'ugh', 'ugly', 'uh', 'uk', 'ultimate', 'ultimately', 'ultimatum', 'ultra', 'um', 'uma', 'un', 'unable', 'unanswered', 'unappealing', 'unattractive', 'unaware', 'unbearable', 'unbelievable', 'unbelievably', 'uncanny', 'uncertain', 'uncle', 'unclear', 'uncomfortable', 'unconscious', 'unconventional', 'unconvincing', 'uncut', 'undead', 'undeniably', 'under', 'undercover', 'underdeveloped', 'underdog', 'underground', 'underlying', 'underneath', 'underrated', 'understand', 'understandable', 'understandably', 'understanding', 'understands', 'understated', 'understood', 'undertaker', 'underused', 'underwater', 'underwear', 'underworld', 'undoubtedly', 'uneasy', 'uneducated', 'unemployed', 'uneven', 'unexpected', 'unexpectedly', 'unexplained', 'unfair', 'unfaithful', 'unfamiliar', 'unfold', 'unfolding', 'unfolds', 'unforgettable', 'unfortunate', 'unfortunately', 'unfunny', 'unhappy', 'unheard', 'unhinged', 'uniform', 'uniformly', 'uniforms', 'unimaginative', 'unimpressive', 'uninspired', 'uninspiring', 'unintentional', 'unintentionally', 'uninteresting', 'union', 'unique', 'unit', 'united', 'universal', 'universe', 'university', 'unknown', 'unleashed', 'unless', 'unlikable', 'unlike', 'unlikeable', 'unlikely', 'unnatural', 'unnecessarily', 'unnecessary', 'unnerving', 'unoriginal', 'unpleasant', 'unpredictable', 'unravel', 'unreal', 'unrealistic', 'unrelated', 'unsatisfying', 'unseen', 'unsettling', 'unstable', 'unsuccessful', 'unsure', 'unsuspecting', 'unsympathetic', 'until', 'unusual', 'unusually', 'unwatchable', 'unwilling', 'unwittingly', 'up', 'upbeat', 'upbringing', 'update', 'updated', 'uplifting', 'upon', 'upper', 'ups', 'upset', 'upside', 'upstairs', 'uptight', 'urban', 'urge', 'ursula', 'us', 'usa', 'usage', 'use', 'used', 'useful', 'useless', 'user', 'users', 'uses', 'using', 'ustinov', 'usual', 'usually', 'utter', 'utterly', 'uwe', 'vacation', 'vader', 'vague', 'vaguely', 'vain', 'val', 'valentine', 'valid', 'valley', 'valuable', 'value', 'values', 'vamp', 'vampire', 'vampires', 'van', 'vance', 'vanessa', 'vanilla', 'vanishing', 'vanity', 'vapid', 'variation', 'variations', 'varied', 'variety', 'various', 'varma', 'varying', 'vast', 'vastly', 'vaudeville', 'vaughn', 'vcr', 've', 'vega', 'vegas', 'vehicle', 'vehicles', 'veidt', 'vein', 'venezuela', 'vengeance', 'venture', 'vera', 'verbal', 'verdict', 'verge', 'verhoeven', 'veronica', 'veronika', 'versa', 'versatile', 'version', 'versions', 'versus', 'vertigo', 'very', 'vet', 'veteran', 'veterans', 'vhs', 'via', 'vibe', 'vibrant', 'vice', 'vicious', 'victim', 'victims', 'victor', 'victoria', 'victorian', 'victory', 'video', 'videos', 'videotape', 'vienna', 'vietnam', 'view', 'viewed', 'viewer', 'viewers', 'viewing', 'viewings', 'viewpoint', 'views', 'viggo', 'vigilante', 'vignettes', 'vile', 'villa', 'village', 'villain', 'villainous', 'villains', 'vince', 'vincent', 'vincenzo', 'vinnie', 'vintage', 'violence', 'violent', 'violently', 'violin', 'virgin', 'virginia', 'virginity', 'virtual', 'virtually', 'virtue', 'virtues', 'virus', 'visceral', 'visconti', 'visible', 'vision', 'visionary', 'visions', 'visit', 'visited', 'visiting', 'visitor', 'visitors', 'visits', 'visual', 'visually', 'visuals', 'vital', 'vivah', 'vivian', 'vivid', 'vividly', 'vocal', 'voice', 'voiced', 'voices', 'void', 'voight', 'volume', 'volumes', 'vomit', 'von', 'vonnegut', 'voodoo', 'vote', 'voted', 'voters', 'votes', 'voting', 'voyage', 'voyager', 'vs', 'vulgar', 'vulnerable', 'wacky', 'wagner', 'wait', 'waited', 'waiting', 'waitress', 'waits', 'wake', 'wakes', 'waking', 'walk', 'walked', 'walken', 'walker', 'walking', 'walks', 'wall', 'wallace', 'wallach', 'walls', 'wally', 'walsh', 'walt', 'walter', 'walters', 'wan', 'wander', 'wandering', 'wanders', 'wang', 'wanna', 'wannabe', 'want', 'wanted', 'wanting', 'wants', 'waqt', 'war', 'ward', 'warden', 'wardrobe', 'warehouse', 'warfare', 'warhols', 'warm', 'warming', 'warmth', 'warn', 'warned', 'warner', 'warning', 'warnings', 'warns', 'warrant', 'warren', 'warrior', 'warriors', 'wars', 'wartime', 'was', 'wash', 'washed', 'washington', 'wasn', 'waste', 'wasted', 'wastes', 'wasting', 'watch', 'watchable', 'watched', 'watcher', 'watchers', 'watches', 'watching', 'water', 'watered', 'waterfall', 'waterfront', 'waters', 'watson', 'watts', 'wave', 'waves', 'waving', 'wax', 'way', 'wayans', 'wayne', 'ways', 'we', 'weak', 'weaker', 'weakest', 'weakness', 'weaknesses', 'wealth', 'wealthy', 'weapon', 'weapons', 'wear', 'wearing', 'wears', 'weary', 'weather', 'weaver', 'web', 'website', 'wedding', 'wee', 'week', 'weekend', 'weekly', 'weeks', 'weight', 'weird', 'weirdness', 'welch', 'welcome', 'welcomed', 'well', 'welles', 'wells', 'wendigo', 'wendt', 'wendy', 'went', 'wentworth', 'were', 'weren', 'werewolf', 'werewolves', 'werner', 'wes', 'wesley', 'west', 'western', 'westerns', 'wet', 'whacked', 'whale', 'what', 'whatever', 'whats', 'whatsoever', 'wheel', 'wheelchair', 'wheeler', 'when', 'whenever', 'where', 'whereas', 'wherein', 'wherever', 'whether', 'which', 'while', 'whilst', 'whimsical', 'whining', 'whiny', 'whip', 'whipped', 'white', 'whites', 'who', 'whoever', 'whole', 'wholesome', 'wholly', 'whom', 'whoopi', 'whore', 'whose', 'why', 'wicked', 'wicker', 'wide', 'widely', 'wider', 'widescreen', 'widmark', 'widow', 'widowed', 'widower', 'wielding', 'wife', 'wig', 'wild', 'wilder', 'wilderness', 'wildly', 'will', 'willem', 'william', 'williams', 'willie', 'willing', 'willingly', 'willis', 'wilson', 'win', 'winchester', 'wind', 'window', 'windows', 'winds', 'wine', 'wing', 'winger', 'wings', 'wink', 'winner', 'winners', 'winning', 'wins', 'winston', 'winter', 'winters', 'wipe', 'wiped', 'wire', 'wisdom', 'wise', 'wisely', 'wish', 'wished', 'wishes', 'wishing', 'wit', 'witch', 'witchcraft', 'witches', 'with', 'witherspoon', 'within', 'without', 'witness', 'witnessed', 'witnesses', 'witnessing', 'wits', 'witty', 'wives', 'wizard', 'wodehouse', 'woke', 'wolf', 'wolves', 'woman', 'women', 'won', 'wonder', 'wondered', 'wonderful', 'wonderfully', 'wondering', 'wonderland', 'wonders', 'wondrous', 'wong', 'wont', 'woo', 'wood', 'wooden', 'woods', 'woody', 'word', 'words', 'wore', 'work', 'worked', 'worker', 'workers', 'working', 'works', 'world', 'worlds', 'worldwide', 'worm', 'worms', 'worn', 'worried', 'worry', 'worrying', 'worse', 'worship', 'worst', 'worth', 'worthless', 'worthwhile', 'worthy', 'would', 'wouldn', 'wound', 'wounded', 'wounds', 'wow', 'wrap', 'wrapped', 'wraps', 'wray', 'wreck', 'wrenching', 'wrestler', 'wrestling', 'wretched', 'wright', 'wrist', 'write', 'writer', 'writers', 'writes', 'writing', 'written', 'wrong', 'wrongly', 'wrote', 'wrought', 'wtc', 'wtf', 'wu', 'ww2', 'wwe', 'wwf', 'wwi', 'wwii', 'www', 'ya', 'yacht', 'yard', 'yarn', 'yawn', 'yeah', 'year', 'yearning', 'years', 'yell', 'yelling', 'yellow', 'yells', 'yep', 'yes', 'yesterday', 'yet', 'yeti', 'yikes', 'yoda', 'yokai', 'york', 'you', 'young', 'younger', 'youngest', 'youngsters', 'your', 'yours', 'yourself', 'youth', 'youthful', 'youths', 'youtube', 'yuen', 'yugoslavia', 'yuma', 'zack', 'zane', 'zealand', 'zelah', 'zenia', 'zentropa', 'zero', 'zeta', 'zhang', 'zizek', 'zodiac', 'zoe', 'zombi', 'zombie', 'zombies', 'zone', 'zoo', 'zoom', 'zorro', 'zu']


Vocabulary
{'when': 9763, 'saw': 7735, 'this': 9000, 'movie': 5915, 'circa': 1692, '1979': 66, 'it': 4803, 'became': 900, 'the': 8957, 'first': 3527, 'that': 8954, 'ever': 3180, 'walked': 9626, 'out': 6333, 'of': 6224, 'in': 4557, 'middle': 5721, 'there': 8977, 'is': 4791, 'nothing': 6145, 'worse': 9900, 'than': 8948, 'comedy': 1857, 'just': 4942, 'misses': 5789, 'being': 932, 'funny': 3758, 'and': 474, 'every': 3183, 'time': 9059, 'although': 428, 'can': 1379, 'speak': 8351, 'for': 3627, 'last': 5124, '25': 110, 'minutes': 5765, 'was': 9674, 'original': 6310, 'about': 163, 'any': 541, 'skits': 8175, 'while': 9771, 'enjoy': 3078, 'humor': 4432, 'where': 9765, 'appropriate': 588, 'these': 8983, 'were': 9743, 'needlessly': 6033, 'vulgar': 9613, 'what': 9756, 'even': 3174, 'more': 5872, 'irritating': 4788, 'advertised': 298, 'as': 653, 'robin': 7546, 'william': 9809, 'on': 6264, 'his': 4314, 'new': 6065, 'found': 3674, 'fame': 3357, 'television': 8900, 'series': 7915, 'yet': 9959, 'role': 7566, 'turned': 9283, 'to': 9082, 'be': 881, 'so': 8260, 'minor': 5760, 'you': 9965, 'cannot': 1394, 'notice': 6146, 'him': 4299, 'screen': 7795, 'after': 321, 'watching': 9689, 'many': 5514, 'next': 6074, 'action': 231, 'star': 8460, 'reality': 7195, 'tv': 9289, 'taped': 8850, 'awful': 782, 'tripe': 9247, 'me': 5621, 'some': 8288, 'bizarre': 1030, 'reason': 7204, 'only': 6270, 'have': 4194, 'myself': 5968, 'blame': 1040, 'watched': 9685, 'whole': 9782, 'thing': 8989, 'hoping': 4377, 'would': 9907, 'something': 8293, 'unique': 9390, 'entire': 3107, 'much': 5924, 'hype': 4457, 'joel': 4886, 'silver': 8107, 'touch': 9140, 'with': 9848, 'flicks': 3570, 'he': 4207, 'might': 5726, 'want': 9647, 'make': 5472, 'sure': 8738, 'bones': 1113, 'up': 9428, 'br': 1173, 'redeeming': 7245, 'value': 9471, 'film': 3487, 'billy': 1010, 'zane': 9981, 'couldn': 2127, 'lift': 5249, 'writing': 9928, 'having': 4196, 'said': 7671, 'performance': 6550, 'way': 9701, 'through': 9029, 'doesn': 2736, 'seem': 7855, 'know': 5050, 'else': 3003, 'do': 2727, 'other': 6326, 'look': 5353, 'smug': 8243, 'here': 4262, 'though': 9007, 'quite': 7082, 'frankly': 3696, 'sucked': 8673, 'let': 5223, 'take': 8829, 'ideas': 4473, 'from': 3729, 'rat': 7149, 'race': 7087, 'enemy': 3060, 'state': 8479, 'terminator': 8921, 'midnight': 5724, 'run': 7635, 'bad': 808, 'gambling': 3785, 'think': 8991, 'simply': 8120, 'rehash': 7285, 'who': 9780, 'brilliant': 1227, 'idea': 4470, 'two': 9301, 'bridge': 1219, 'chase': 1581, 'sequences': 7908, 'row': 7615, 'sean': 7819, 'man': 5487, 'hour': 4403, 'shows': 8072, 'all': 398, 'strengths': 8579, 'weaknesses': 9710, 'casting': 1472, 'directors': 2640, 'mention': 5678, 'during': 2879, 'one': 6266, 'note': 6141, 'johnny': 4889, 'plays': 6690, 'dumb': 2868, 'good': 3946, 'looking': 5355, 'jock': 4883, 'very': 9518, 'well': 9735, 'but': 1328, 'struggles': 8606, 'weight': 9729, 'we': 9705, 'never': 6063, 'care': 1423, 'whether': 9769, 'lives': 5313, 'or': 6295, 'dies': 2607, 'by': 1341, 'mid': 5720, 'fails': 3338, 'provide': 6991, 'audience': 736, 'like': 5261, 'lucky': 5406, 'routine': 7613, 'gets': 3863, 'old': 6251, 'really': 7201, 'isn': 4796, 'anything': 546, 'character': 1561, 'root': 7593, 'dream': 2809, 'compared': 1896, 'wooden': 9879, 'van': 9476, 'de': 2375, 'did': 2602, 'howard': 4411, 'fine': 3506, 'tell': 8901, 'her': 4259, 'pretend': 6870, 'half': 4110, 'don': 2752, 'kept': 4990, 'expecting': 3252, 'quote': 7083, 'arnie': 623, 'dramatic': 2796, 'depths': 2514, 'freddy': 3706, 'got': 3963, 'not': 6137, 'nearly': 6021, 'developed': 2575, 'camera': 1368, 'loves': 5389, 'dark': 2345, 'harsh': 4174, 'light': 5252, 'day': 2370, 'demeanor': 2468, 'sucks': 8676, 'energy': 3062, 'off': 6225, 'bauer': 878, 'showed': 8068, 'natural': 6007, 'life': 5245, 'five': 3538, 'minute': 5764, 'bit': 1020, 'part': 6458, 'at': 699, 'ultimately': 9313, 'has': 4181, 'rugged': 7624, 'looks': 5356, 'lead': 5163, 'an': 467, 'ensemble': 3088, 'cast': 1470, 'shouldn': 8060, 'been': 910, 'left': 5187, 'solo': 8282, 'too': 9115, 'big': 997, 'task': 8859, 'colleague': 1820, 'jared': 4839, 'elliot': 2999, 'may': 5604, 'had': 4100, 'better': 983, 'luck': 5404, 'dynamic': 2894, 'characterization': 1565, 'hard': 4152, 'given': 3894, 'jeff': 4853, 'welch': 9732, 'lame': 5098, 'script': 7806, 'someone': 8292, 'should': 8057, 'away': 778, 'before': 914, 'hurts': 4450, 'himself': 4300, 'anyone': 545, 'finally': 3500, 'reach': 7171, 'complete': 1918, 'ashamed': 655, 'great': 4010, 'african': 320, 'american': 449, 'classic': 1720, 'cult': 2266, 'classics': 1722, 'recently': 7222, 'purchased': 7032, 'collection': 1824, 'edition': 2945, 'ray': 7165, 'moore': 5863, 'if': 4486, 'love': 5384, 'school': 7769, 'karate': 4957, 'movies': 5916, 'black': 1032, 'comedies': 1856, 'they': 8984, 'anymore': 544, 'my': 5963, 'family': 3362, 'are': 601, 'buffs': 1281, 'site': 8150, 'extreme': 3309, 'help': 4247, 'solving': 8286, 'am': 433, 'iraq': 4774, 'right': 7501, 'now': 6159, 'helps': 4252, 'stay': 8490, 'connected': 1983, 'world': 9891, 'states': 8483, 'thank': 8949, 'imdb': 4517, 'recommend': 7229, 'friends': 3721, 'rules': 7632, 'word': 9882, 'check': 1595, 'them': 8965, 'yourself': 9972, 'ten': 8910, 'lines': 5284, 'lot': 5375, 'commenting': 1873, 'point': 6717, 'across': 227, 'films': 3495, 'outside': 6351, 'motel': 5890, 'room': 7588, 'real': 7186, 'costumes': 2124, 'strings': 8592, 'see': 7848, 'porn': 6759, 'worth': 9903, 'between': 986, 'sex': 7947, 'scenes': 7761, 'cinema': 1686, 'theater': 8958, 'came': 1365, 'grew': 4028, 'went': 9741, 'arizona': 612, 'enjoyed': 3080, 'seeing': 7851, 'locations': 5331, 'spent': 8375, 'remember': 7336, 'thinking': 8992, 'barbara': 838, 'venture': 9504, 'into': 4738, 'rock': 7552, 'sound': 8325, 'actually': 243, 'ears': 2913, 'successful': 8668, 'fan': 3364, 'kris': 5065, 'singing': 8133, 'until': 9422, 'effort': 2961, 'west': 9750, 'actor': 236, 'serious': 7916, 'chops': 1654, 'imho': 4518, 'romance': 7575, 'judy': 4924, 'garland': 3807, 'version': 9514, 'janet': 4833, 'believe': 939, 'made': 5443, 'changes': 1551, 'long': 5348, 'dvd': 2886, 'release': 7307, 'among': 456, 'things': 8990, 'recall': 7214, 'helicopter': 4242, 'shot': 8054, 'which': 9770, 'reveals': 7453, 'packed': 6392, 'sun': 8705, 'devil': 2582, 'stadium': 8433, 'longer': 5349, 'wish': 9840, 'done': 2754, 'job': 4881, 'music': 5948, 'god': 3927, 'put': 7046, 'songs': 8301, 'along': 417, 'those': 9006, 'information': 4631, 'primary': 6889, 'source': 8332, 'says': 7739, 'problem': 6908, 'doing': 2740, 'interviews': 4734, 'own': 6379, 'documentary': 2733, 'boat': 1091, 'musical': 5949, 'conversation': 2066, 'journey': 4911, 'interviewed': 4733, 'stephen': 8509, 'singer': 8131, 'close': 1767, 'professional': 6927, 'personal': 6569, 'ties': 9051, 'bonnie': 1115, 'others': 6327, 'john': 4888, 'norman': 6128, 'band': 830, 'turning': 9285, 'essentially': 3149, 'pop': 6750, 'score': 7781, 'could': 2126, 'pass': 6474, 'friend': 3719, 'member': 5665, 'tension': 8919, 'set': 7930, 'presence': 6854, 'she': 7995, 'effect': 2954, 'talk': 8839, 'back': 799, 'roll': 7568, 'end': 3047, 'around': 625, 'decided': 2406, 'use': 9447, 'live': 5310, 'performances': 6551, 'specifically': 8358, 'making': 5477, 'work': 9885, 'gained': 3780, 'greater': 4011, 'respect': 7411, 'artist': 645, 'upon': 9434, 'hearing': 4218, 'story': 8558, 'diva': 2716, 'pro': 6906, 'gay': 3819, 'wrong': 9930, 'boy': 1166, 'oh': 6246, 'gee': 3821, 'most': 5887, 'interesting': 4720, 'hilarity': 4294, 'effects': 2958, 'used': 9448, 'create': 2183, 'mom': 5832, 'looked': 5354, 'cheap': 1589, 'video': 9534, 'totally': 9139, 'unreal': 9411, 'its': 4809, 'loving': 5390, 'attempted': 716, 'shots': 8056, 'pathetic': 6490, 'mean': 5624, 'hey': 4276, 'low': 5392, 'budget': 1277, 'flick': 3569, 'still': 8530, 'makes': 5475, 'combination': 1845, 'case': 1463, 'such': 8671, 'doomed': 2760, 'created': 2184, 'invisible': 4760, 'kids': 5009, 'your': 9970, 'no': 6099, 'taste': 8862, 'perhaps': 6557, 'will': 9807, 'awake': 770, 'cartoon': 1458, 'backgrounds': 803, 'rich': 7482, 'colored': 1835, 'full': 3745, 'nicely': 6076, 'art': 640, 'details': 2564, 'animation': 500, 'usual': 9456, 'studio': 8616, 'standards': 8453, 'higher': 4285, 'present': 6855, 'however': 4412, 'find': 3503, 'tedious': 8893, 'number': 6169, 'reasons': 7208, 'definitely': 2436, 'scott': 7787, 'bradley': 1177, 'probably': 6907, 'supposed': 8734, 'setting': 7933, 'ends': 3055, 'dreary': 2813, 'sleepy': 8200, 'monotonous': 5848, 'same': 7689, '5th': 131, 'since': 8126, 'people': 6538, 'including': 4576, 'tend': 8912, 'their': 8962, 'eyes': 3315, 'yawn': 9947, 'visual': 9585, 'missed': 5788, 'average': 763, 'viewer': 9541, 'storyline': 8559, 'giving': 3896, 'secrets': 7840, 'aren': 604, 'already': 420, 'plot': 6703, 'summary': 8701, 'country': 2134, 'city': 1701, 'common': 1883, 'theme': 8966, 'both': 1145, 'animated': 499, 'era': 3129, 'nostalgia': 6135, 'nonexistent': 6117, 'rural': 7641, 'reflected': 7263, 'similar': 8110, 'values': 9472, 'without': 9851, 'doubt': 2769, 'best': 976, 'seen': 7860, '10': 3, 'years': 9951, 'began': 918, 'sometime': 8295, 'rape': 7140, 'scene': 7759, 'shocked': 8031, 'kinda': 5020, 'sick': 8081, 'today': 9085, 've': 9495, 'beginning': 921, 'understood': 9352, 'how': 4410, 'exciting': 3224, 'frightening': 3726, 'shocking': 8033, 'disturbing': 2715, 'ending': 3051, 'shown': 8071, 'experience': 3257, 'haunt': 4191, 'characters': 1567, 'rest': 7423, 'll': 5317, 'torture': 9133, 'conscience': 1994, 'worry': 9898, 'bodies': 1094, 'river': 7528, 'unhappy': 9376, 'endings': 3052, 'history': 4319, 'smart': 8229, 'horrifying': 4389, 'acting': 230, 'also': 422, 'especially': 3144, 'jon': 4902, 'voight': 9598, 'burt': 1315, 'reynolds': 7476, 'magnificent': 5458, 'throughout': 9030, 'based': 854, 'dick': 2598, 'chaney': 1548, 'novel': 6155, 'must': 5955, 'lovers': 5388, 'deals': 2383, 'aging': 337, 'encountered': 3042, 'families': 3361, 'facing': 3325, 'potential': 6799, 'stages': 8437, 'suggest': 8687, 'health': 4213, 'trauma': 9206, 'disease': 2676, 'designed': 2539, 'primarily': 6888, 'patient': 6494, 'reaches': 7173, 'heart': 4220, 'struggle': 8604, 'excellent': 3210, 'portrayal': 6770, 'outstanding': 6352, 'commanding': 1867, 'line': 5280, 'admit': 276, 'scarecrow': 7747, 'over': 6353, 'top': 9122, 'toned': 9108, 'down': 2773, 'maybe': 5605, 'less': 5218, 'cheesy': 1606, 'overall': 6355, 'absolutely': 172, 'wonderful': 9869, 'incredibly': 4589, 'beautiful': 896, 'missing': 5791, 'important': 4540, 'nude': 6167, 'factor': 3327, 'several': 7942, 'view': 9539, 'evil': 3192, 'towards': 9150, 'walking': 9629, 'richard': 7483, 'does': 2735, 'sheriff': 8014, 'drunk': 2846, 'boyfriend': 1168, 'yes': 9957, 'favorites': 3405, 'opens': 6277, 'thugs': 9039, 'kill': 5010, 'another': 520, 'thug': 9038, 'body': 1095, 'discovered': 2666, 'doctor': 2729, 'realizes': 7199, 'dead': 2376, 'suffering': 8682, 'plague': 6666, 'nasty': 5998, 'against': 328, 'contact': 2020, 'treat': 9218, 'immediately': 4523, 'otherwise': 6328, 'disaster': 2657, 'oddly': 6221, 'taught': 8867, 'classes': 1719, 'getting': 3864, 'facts': 3330, 'little': 5308, 'biggest': 1000, 'illness': 4500, 'grotesque': 4042, '1950': 40, 'wouldn': 9908, 'allowed': 409, 'show': 8064, 'high': 4284, 'fever': 3452, 'lots': 5377, 'explosive': 3289, 'blood': 1071, 'enormously': 3086, 'get': 3862, 'gross': 4040, 'certainly': 1528, 'understand': 9346, 'why': 9789, 'didn': 2603, 'go': 3923, 'far': 3372, 'government': 3968, 'involvement': 4766, 'controlling': 2056, 'treating': 9220, 'handled': 4127, 'local': 5324, 'level': 5230, 'everyone': 3186, 'seemed': 7856, 'ill': 4497, 'prepared': 6850, 'willing': 9812, 'doctors': 2730, 'actors': 237, 'widmark': 9796, 'paul': 6502, 'douglas': 2772, 'respectively': 7416, 'public': 7011, 'police': 6730, 'chief': 1626, 'known': 5053, 'menacing': 5673, 'jack': 4815, 'palance': 6417, 'going': 3934, 'walter': 9638, 'relatively': 7302, 'unknown': 9396, 'zero': 9986, 'mostel': 5888, 'scary': 7756, 'physically': 6622, 'stunts': 8629, 'played': 6685, 'heavy': 4232, 'typical': 9305, 'early': 2907, 'cowardly': 2158, 'sort': 8319, 'despite': 2551, 'everything': 3187, 'neatly': 6023, 'tense': 8918, 'whoever': 9781, 'wrote': 9932, 'screenplay': 7798, 'obviously': 6204, 'books': 1123, 'lucille': 5403, 'ball': 825, 'autobiography': 758, 'mistakes': 5796, 'biopic': 1015, 'ranging': 7132, 'later': 5131, 'desi': 2537, 'write': 9924, 'list': 5296, 'factual': 3331, 'errors': 3139, 'pages': 6398, 'portrayed': 6772, 'themselves': 8969, 'jr': 4914, 'filmmakers': 3492, 'tried': 9240, 'seems': 7859, 'awfully': 783, 'sloppy': 8216, 'moment': 5833, 'irritated': 4787, 'possible': 6790, 'decisions': 2411, 'mountains': 5904, 'decision': 2410, 'dangerous': 2332, 'criminals': 2211, 'act': 228, 'managed': 5489, 'huge': 4418, 'amount': 458, 'money': 5839, 'bank': 833, 'main': 5463, 'criminal': 2209, 'land': 5101, 'shoot': 8040, 'stallone': 8448, 'grab': 3971, 'fly': 3595, 'chick': 1622, 'hostage': 4396, 'cases': 1464, 'illogical': 4501, 'behavior': 928, 'give': 3893, 'points': 6722, 'nice': 6075, 'landscape': 5106, 'scenery': 7760, 'due': 2859, 'sadly': 7665, 'book': 1121, 'captivated': 1413, 'stories': 8556, 'edgar': 2936, 'wallace': 9632, 'represents': 7384, 'german': 3856, 'production': 6922, 'quality': 7059, 'hold': 4334, 'attention': 725, 'itself': 4810, 'badly': 811, 'center': 1517, 'misery': 5779, 'overly': 6364, 'exaggerated': 3202, 'nuances': 6165, 'liked': 5263, 'eddy': 2935, 'rescue': 7394, 'poor': 6748, 'spectacle': 8359, 'hope': 4371, 'told': 9094, 'following': 3613, 'conclusion': 1955, 'say': 7737, 'deserve': 2532, 'cinematic': 1688, 'enough': 3087, 'lazy': 5161, 'afternoon': 324, 'distinct': 2699, 'misfortune': 5782, 'catching': 1481, '2004': 97, 'worst': 9902, 'morning': 5878, 'incoherent': 4578, 'cgi': 1530, 'driven': 2829, 'chronicles': 1674, 'then': 8970, 'embarrassing': 3011, 'vanity': 9481, 'project': 6945, 'cost': 2119, 're': 7169, 'front': 3730, 'neil': 6043, 'young': 9966, 'contributed': 2051, 'share': 7983, 'tunes': 9276, 'buffalo': 1280, 'whose': 9788, 'compositions': 1930, 'sleeps': 8198, 'harvest': 4179, 'mirror': 5772, 'penned': 6536, 'precious': 6826, 'few': 3453, 'ones': 6267, 'built': 1289, 'truly': 9263, 'simplistic': 8119, 'political': 6737, 'completely': 1920, 'merit': 5689, 'unimpressive': 9383, 'forgotten': 3649, 'buy': 1337, 'feel': 3427, 'compelled': 1902, 'contribute': 2050, 'account': 207, 'bought': 1152, 'cd': 1498, 'store': 8554, 'regret': 7281, 'start': 8472, 'saying': 7738, 'horror': 4390, 'horribly': 4385, 'tacky': 8823, 'entertainment': 3101, 'entertained': 3098, 'because': 901, 'fun': 3748, 'mst3k': 5922, 'style': 8633, 'manner': 5506, 'easily': 2917, 'boring': 1136, 'scariest': 7753, 'expected': 3251, 'laughably': 5137, 'honestly': 4358, 'provided': 6992, 'plus': 6709, 'side': 8085, 'entertaining': 3100, 'lighting': 5255, 'editing': 2944, 'provides': 6993, 'moments': 5834, 'mother': 5891, 'strange': 8566, 'fits': 3535, 'dinner': 2628, 'consequence': 1997, 'charge': 1568, 'watch': 9683, 'eat': 2922, 'food': 3618, 'straight': 8561, 'dialogue': 2591, 'meal': 5623, 'served': 7923, 'inappropriate': 4563, 'cuts': 2291, 'pure': 7033, 'darkness': 2349, 'speaking': 8352, 'funniest': 3757, 'parts': 6471, 'climate': 1752, 'apparently': 564, 'unless': 9398, 'poorly': 6749, 'lit': 5303, 'frustration': 3737, 'climactic': 1751, 'comes': 1858, 'unhinged': 9378, 'contains': 2025, 'wow': 9912, 'surprised': 8746, 'reveal': 7450, 'surprise': 8745, 'coming': 1864, 'sense': 7885, 'won': 9866, 'ruin': 7625, 'twenty': 9292, 'various': 9487, 'wasn': 9678, 'commentary': 1871, 'tracks': 9164, 'crap': 2169, 'admire': 272, 'director': 2638, 'todd': 9087, 'sheets': 8003, 'drive': 2827, 'enthusiasm': 3104, '1985': 73, '2000': 93, 'unfortunately': 9374, 'zombie': 9993, 'bloodbath': 1072, 'trilogy': 9244, 'quick': 7072, 'ratings': 7155, 'sees': 7861, 'group': 4046, 'obnoxious': 6189, 'students': 8613, 'finding': 3504, 'attacked': 712, 'living': 5314, 'escaped': 3141, 'secret': 7837, 'army': 622, 'base': 852, 'located': 5329, 'directly': 2637, 'beneath': 956, 'working': 9889, 'dreadful': 2807, 'brian': 1215, 'relies': 7317, 'heavily': 4231, 'liberal': 5238, 'bomb': 1106, 'delivers': 2460, 'embarrassingly': 3012, 'amateurish': 436, 'featuring': 3421, 'mind': 5744, 'numbingly': 6172, 'talent': 8835, 'free': 3707, 'giant': 3872, 'cardboard': 1421, 'space': 8339, 'trademark': 9167, 'shoddy': 8036, 'gore': 3957, 'pulled': 7016, 'victims': 9529, 'clothing': 1778, 'eternity': 3160, 'running': 7638, 'unconvincing': 9334, 'undead': 9336, 'animal': 497, 'armageddon': 617, 'finishes': 3512, 'travel': 9209, 'twist': 9297, 'forces': 3632, 'viewers': 9542, 'once': 6265, 'mr': 5919, 'again': 327, 'flight': 3572, 'presumably': 6867, 'pressure': 6865, 'mildly': 5731, 'emphasis': 3028, 'mild': 5730, 'actual': 241, 'behind': 930, 'woman': 9864, 'fiancé': 3457, 'falls': 3355, 'together': 9090, 'eventually': 3179, 'lets': 5226, 'ok': 6248, 'laughs': 5140, 'worked': 9886, 'predictable': 6834, 'destination': 2552, 'talking': 8841, 'parrot': 6455, 'honest': 4357, 'staring': 8466, 'seat': 7827, 'call': 1359, 'stereotypes': 8515, 'impact': 4530, 'derivative': 2519, 'snap': 8247, 'adequate': 265, 'players': 6687, 'unfamiliar': 9368, 'mgm': 5710, 'starred': 8468, 'robert': 7543, 'wife': 9801, 'businessman': 1324, 'actresses': 239, 'grateful': 4001, 'performers': 6554, 'mostly': 5889, 'impression': 4546, 'generic': 3837, 'wants': 9650, 'amazed': 437, 'anybody': 542, 'raise': 7110, 'kind': 5019, 'included': 4574, 'crappy': 2170, 'amazing': 438, 'ages': 335, 'ago': 338, 'younger': 9967, 'title': 9077, 'candy': 1389, 'credits': 2199, 'noticed': 6148, 'entry': 3114, 'named': 5986, 'crime': 2207, 'bell': 944, 'reading': 7182, 'brought': 1254, 'memories': 5669, 'aged': 330, 'pretty': 6874, 'fact': 3326, 'means': 5630, 'rather': 7153, 'enjoyable': 3079, 'riff': 7499, 'hitchcock': 4321, 'formula': 3657, 'mistaken': 5795, 'identity': 4478, 'worldwide': 9893, 'thrills': 9026, 'large': 5116, 'amongst': 457, 'couple': 2139, 'dog': 2737, 'europe': 3166, 'decide': 2405, 'return': 7442, 'reward': 7472, 'arrival': 632, 'killers': 5013, 'mix': 5805, 'mad': 5442, 'lighter': 5253, 'feature': 3418, 'directed': 2633, 'eugene': 3163, 'levy': 5232, 'engaging': 3067, 'unpredictable': 9409, 'unexpected': 9363, 'released': 7308, 'hit': 4320, 'soon': 8305, 'blockbuster': 1065, 'ridiculous': 7496, 'loser': 5369, 'tag': 8826, 'sweet': 8789, 'sacrifice': 7658, 'immortal': 4528, 'hero': 4265, 'sacrifices': 7660, 'leading': 5167, 'lady': 5092, 'gandhi': 3790, 'loved': 5385, 'each': 2898, 'justification': 4944, 'meaning': 5626, 'influenced': 4626, 'broken': 1243, 'hearts': 4224, 'attitude': 727, 'thoughtful': 9009, 'hence': 4253, 'moved': 5911, 'crass': 2175, 'stupid': 8630, 'song': 8300, 'stylish': 8636, 'cool': 2085, 'either': 2974, 'hair': 4105, 'cant': 1396, 'horrendous': 4383, 'inconsistent': 4583, 'cinematography': 1691, 'true': 9262, 'saving': 7733, 'lyrics': 5430, 'tasteful': 8863, 'anyway': 548, 'except': 3213, 'ordinary': 6302, 'dated': 2358, 'charm': 1578, '1933': 23, 'pre': 6821, 'code': 1801, 'different': 2611, 'usually': 9457, 'short': 8048, 'spencer': 8371, 'tracy': 9165, 'face': 3320, 'loretta': 5365, 'enjoying': 3081, 'intriguing': 4742, 'pressed': 6864, 'girl': 3889, '20': 91, 'year': 9949, 'started': 8473, 'small': 8224, 'child': 1628, 'quickly': 7073, 'days': 2372, 'soft': 8272, 'focus': 3599, 'times': 9063, 'beauty': 898, 'playing': 6689, 'cynical': 2297, 'bill': 1005, 'slowly': 8219, 'transformed': 9189, 'thanks': 8953, 'delivered': 2458, 'hardly': 4157, 'knew': 5040, 'roles': 7567, 'supporting': 8730, 'connolly': 1989, 'marjorie': 5529, 'arthur': 642, 'glenda': 3907, 'farrell': 3380, 'leave': 5180, 'lasting': 5126, 'impressions': 4547, 'viewing': 9543, '75': 140, 'particularly': 6465, 'fascinated': 3382, 'minister': 5758, 'father': 3398, 'figure': 3478, 'camp': 1372, 'fetched': 3450, 'lonely': 5346, 'depression': 2512, 'trying': 9271, 'survive': 8759, 'type': 9303, 'winds': 9821, 'touching': 9143, 'tale': 8834, 'kudos': 5070, 'writers': 9926, 'creating': 2186, 'drama': 2794, 'curious': 2275, 'development': 2577, 'nuanced': 6164, 'team': 8879, 'wrenching': 9918, 'emotional': 3023, 'cerebral': 1525, 'opportunity': 6288, 'develop': 2574, 'herself': 4273, 'rarely': 7148, 'credit': 2197, 'breathing': 1204, 'wood': 9878, 'shop': 8044, 'persona': 6568, 'unfolds': 9371, 'traits': 9181, 'faults': 3401, 'variety': 9486, 'highly': 4290, 'charged': 1569, 'relationships': 7300, 'course': 2144, 'fate': 3396, 'tied': 9049, 'principals': 6895, 'catch': 1479, 'house': 4405, 'retired': 7437, 'michael': 5714, 'york': 9964, 'goes': 3933, 'russia': 7646, 'revenge': 7455, 'russian': 7647, 'gangster': 3794, 'murdered': 5936, 'policeman': 6731, 'son': 8299, 'meets': 5650, 'exceptionally': 3216, 'strong': 8597, 'decent': 2403, 'cop': 2089, 'bring': 1229, 'justice': 4943, 'remembered': 7337, '1980s': 68, 'always': 432, 'portray': 6769, 'russians': 7648, 'guys': 4088, 'righteous': 7502, 'guy': 4087, 'typically': 9306, 'lends': 5203, 'class': 1718, 'mediocre': 5644, 'alexander': 385, 'blah': 1036, 'surprisingly': 8749, 'chemistry': 1609, 'handsome': 4131, 'adrian': 285, 'killed': 5011, 'within': 9850, '15': 11, 'above': 164, 'villain': 9553, 'blonde': 1069, 'villainous': 9554, 'rent': 7358, 'okay': 6249, 'suck': 8672, 'faster': 3392, 'load': 5321, 'wasted': 9680, 'commercials': 1876, '30': 116, 'ad': 244, 'makeup': 5476, 'ass': 670, 'ed': 2933, 'least': 5178, 'imagine': 4514, 'white': 9778, 'teeth': 8899, 'dentist': 2491, 'gotten': 3967, 'self': 7869, 'lousy': 5382, 'ads': 286, 'chance': 1545, 'instead': 4685, 'pilot': 6641, 'lacked': 5085, 'option': 6294, 'pray': 6820, 'death': 2388, 'episodes': 3122, 'deserving': 2536, 'david': 2364, 'mamet': 5486, 'directorial': 2639, 'debut': 2396, 'games': 3788, 'study': 8618, 'psychological': 7005, 'overtones': 6370, 'psychiatrist': 7002, 'lured': 5420, 'confidence': 1965, 'game': 3786, 'margaret': 5520, 'ford': 3634, 'lindsay': 5279, 'crouse': 2240, 'practice': 6814, 'written': 9929, 'selling': 7874, 'somewhat': 8297, 'neither': 6045, 'define': 2431, 'nor': 6122, 'resolve': 7407, 'steven': 8520, 'session': 7929, 'owes': 6377, 'pay': 6508, 'decides': 2408, 'takes': 8832, 'seedy': 7850, 'dive': 2717, 'mike': 5729, 'joe': 4885, 'charismatic': 1572, 'con': 1939, 'wastes': 9681, 'claimed': 1707, 'owed': 6375, 'turns': 9286, 'eight': 2970, 'hundred': 4435, 'dollars': 2743, 'agrees': 342, 'wipe': 9834, 'clean': 1731, 'agree': 340, 'simple': 8116, 'favor': 3403, 'involves': 4767, 'card': 1420, 'hand': 4122, 'gone': 3943, 'hooked': 4366, 'precise': 6827, 'deliver': 2456, 'mesmerizing': 5694, 'leads': 5168, 'compelling': 1903, 'surreal': 8750, 'realm': 7202, 'existence': 3240, 'introduces': 4746, 'swept': 8790, 'memorable': 5668, 'encounter': 3041, 'demonstrates': 2479, 'works': 9890, 'lessons': 5221, 'stunning': 8626, 'climax': 1754, 'keeps': 4977, 'relentless': 7311, 'learns': 5176, 'human': 4426, 'nature': 6009, 'open': 6272, 'riveting': 7530, 'nuance': 6163, 'complex': 1921, 'able': 157, 'willingly': 9813, 'shadows': 7961, 'tight': 9054, 'turmoil': 9281, 'calm': 1363, 'assured': 691, 'exterior': 3304, 'experiences': 3259, 'change': 1549, 'deeply': 2423, 'capable': 1400, 'includes': 4575, 'joey': 4887, 'dr': 2783, 'walsh': 9636, 'ricky': 7488, 'jay': 4844, 'george': 3851, 'macy': 5441, 'sergeant': 7911, 'moran': 5868, 'quintessential': 7078, 'caliber': 1356, 'grace': 3975, 'us': 9444, 'future': 3767, 'defines': 2433, 'under': 9338, 'perfection': 6547, 'miss': 5787, 'rate': 7150, 'domino': 2751, 'principle': 6896, 'question': 7068, 'thrillers': 9024, 'convoluted': 2081, 'halfway': 4111, 'throw': 9031, 'arms': 620, 'scream': 7791, 'gene': 3830, 'hackman': 4097, 'stanley': 8458, 'kramer': 5062, 'involved': 4765, 'mess': 5695, 'summed': 8702, 'happens': 4146, 'washed': 9676, 'stars': 8470, 'late': 5129, '1990': 78, 'launch': 5142, 'comeback': 1852, 'reunion': 7446, 'tour': 9145, 'members': 5666, 'fruit': 3734, 'fictional': 3461, '70': 136, 'tony': 9114, 'rea': 7170, 'machines': 5437, 'runs': 7639, 'famous': 3363, 'festival': 3448, 'broke': 1242, 'retro': 7440, 'wide': 9792, 'wave': 9697, 'sets': 7932, 'search': 7820, 'keith': 4980, 'writer': 9925, 'excessive': 3219, 'lifestyle': 5247, 'timothy': 9066, 'lies': 5243, 'player': 6686, 'rocker': 7553, 'owns': 6383, 'mansion': 5512, 'forced': 3631, 'sell': 7871, 'fortune': 3666, 'lasted': 5125, 'hired': 4311, 'replace': 7369, 'reluctantly': 7321, 'try': 9270, 'jobs': 4882, 'begin': 920, 'manager': 5491, 'approaches': 586, 'label': 5078, 'albums': 378, 'club': 1781, 'overweight': 6371, 'starts': 8477, 'conflicts': 1972, 'figures': 3480, 'hang': 4133, 'second': 7833, 'greatness': 4014, 'earlier': 2905, 'crazy': 2181, 'spinal': 8382, 'tap': 8848, 'ii': 4494, 'gradually': 3979, 'becomes': 905, 'dramatically': 2797, 'focused': 3600, 'struggling': 8607, 'deal': 2380, 'deaths': 2389, 'demons': 2476, 'killing': 5014, 'depicted': 2505, 'happen': 4142, 'truth': 9267, 'carried': 1452, 'teenagers': 8897, 'cal': 1355, 'andre': 477, 'normal': 6126, 'using': 9454, 'held': 4239, 'technique': 8888, 'la': 5076, 'blair': 1037, 'witch': 9845, 'ben': 953, 'succeeds': 8666, 'bringing': 1230, 'issues': 4802, 'exactly': 3201, 'hate': 4184, 'carry': 1454, 'thought': 9008, 'massacre': 5568, 'shooting': 8041, 'powerful': 6809, 'happening': 4144, 'happened': 4143, 'creates': 2185, 'illusion': 4502, 'scripted': 7807, 'subject': 8641, 'matter': 5591, 'deadly': 2377, 'bloody': 1075, 'violent': 9562, 'super': 8714, 'ninjas': 6096, 'features': 3420, 'fight': 3473, 'hong': 4361, 'kong': 5057, 'considered': 2005, 'masterpiece': 5576, 'launched': 5143, 'careers': 1426, 'men': 5671, 'play': 6683, 'lo': 5319, 'philip': 6601, 'boiled': 1101, 'chop': 1650, 'ain': 356, 'collect': 1822, 'bob': 1092, 'strength': 8578, 'blade': 1035, 'plan': 6669, 'inevitable': 4612, 'odd': 6218, 'turkey': 9279, 'realise': 7187, 'knock': 5046, 'folks': 3609, 'guess': 4063, 'needed': 6030, 'career': 1425, 'painful': 6401, 'undeniably': 9337, 'save': 7730, 'special': 8354, 'laden': 5090, 'junk': 4939, 'fast': 3391, 'furious': 3760, 'push': 7042, 'favorite': 3404, 'tom': 9099, 'jerry': 4861, 'perfect': 6546, 'halloween': 4114, 'creepiness': 2202, 'trick': 9236, 'window': 9819, 'blind': 1060, 'cleaner': 1733, 'shirt': 8027, 'hanging': 4134, 'ghost': 3867, 'cartoons': 1460, 'listening': 5301, 'program': 6935, 'radio': 7098, 'frightened': 3725, 'standing': 8454, 'throat': 9027, 'icy': 4468, 'chills': 1635, 'spine': 8383, 'literally': 5305, 'laughing': 5139, 'fears': 3415, 'scaring': 7754, 'four': 3676, 'attacks': 714, 'shoes': 8038, 'mouse': 5906, 'witty': 9857, 'kitty': 5036, 'speaks': 8353, 'cat': 1478, 'million': 5740, 'dollar': 2742, 'bodyguard': 1096, 'trouble': 9258, 'quiet': 7074, 'please': 6694, 'trap': 9201, 'happy': 4149, 'solid': 8280, 'cleaning': 1734, 'texas': 8942, 'below': 950, 'chuck': 1676, 'jones': 4904, 'spy': 8422, 'thriller': 9023, 'night': 6085, 'vonnegut': 9603, 'novels': 6157, 'adapt': 248, 'length': 5204, 'adaptation': 249, 'faithful': 3349, 'indie': 4599, 'approach': 584, 'produced': 6916, 'effective': 2955, 'hollywood': 4343, 'intelligent': 4702, 'green': 4019, 'normally': 6127, 'direction': 2635, 'nick': 6079, 'nolte': 6110, 'older': 6252, 'allows': 411, 'range': 7130, 'lee': 5186, 'deserved': 2533, 'industry': 4610, 'twin': 9295, 'peaks': 6520, 'air': 357, 'phenomenon': 6598, 'read': 7178, 'realities': 7194, 'premise': 6847, 'appear': 568, 'knowledge': 5052, 'utterly': 9459, 'confused': 1979, 'events': 3177, 'unfolding': 9370, 'fellow': 3436, 'americans': 450, 'lowest': 5395, 'lord': 5362, 'knows': 5054, 'subjects': 8643, 'morgan': 5874, 'freeman': 3709, 'spanish': 8345, 'paz': 6514, 'vega': 9496, 'whilst': 9772, 'independent': 4592, 'dubious': 2853, 'positive': 6782, 'contain': 2022, 'plots': 6704, 'easy': 2921, 'follow': 3610, 'saddest': 7663, 'smile': 8234, 'need': 6029, 'petty': 6591, 'cliché': 1743, 'sides': 8088, 'laughter': 5141, 'rare': 7147, 'forward': 3669, 'jan': 4831, 'vincent': 9557, 'nut': 6177, 'affair': 305, 'helicopters': 4243, 'fantasy': 3371, 'unbelievable': 9325, 'speed': 8365, 'record': 7233, 'experimental': 3262, '1960': 47, '300': 117, 'compound': 1931, 'providing': 6994, 'thrust': 9037, 'wing': 9823, 'period': 6559, 'called': 1360, 'blue': 1082, 'realistic': 7192, 'carrey': 1450, 'haven': 4195, 'bruce': 1257, 'almighty': 414, 'none': 6115, 'reviews': 7464, 'dont': 2756, 'somehow': 8291, 'attempt': 715, 'liar': 5237, 'daily': 2307, 'steve': 8519, 'hilarious': 4292, 'jim': 4877, 'hearted': 4222, 'piano': 6625, 'example': 3206, 'storytelling': 8560, 'superb': 8715, 'inspiring': 4679, 'manipulative': 5503, 'fake': 3350, 'tad': 8825, 'considering': 2006, 'restraint': 7428, 'single': 8134, 'explosion': 3287, 'suspenseful': 8772, 'thus': 9044, 'extraordinary': 3307, 'words': 9883, 'describe': 2524, 'terrible': 8924, 'dull': 2867, 'lifeless': 5246, 'laugh': 5135, 'response': 7420, 'posters': 6795, 'anne': 509, 'marie': 5522, 'highlight': 4287, 'person': 6567, 'brett': 1214, 'kelly': 4983, 'statement': 8481, 'male': 5479, 'sister': 8145, 'brother': 1252, 'gal': 3781, 'opposite': 6290, 'attractive': 733, 'tall': 8844, 'holding': 4335, 'mark': 5530, 'rain': 7106, 'forest': 3638, 'keep': 4974, 'perfectly': 6548, 'kidnapped': 5007, 'steps': 8512, 'poo': 6746, 'solve': 8284, 'felt': 3437, 'rental': 7359, 'home': 4348, 'gave': 3818, 'marks': 5535, 'besides': 975, 'lack': 5084, 'constant': 2013, 'aided': 348, 'joke': 4896, 'utter': 9458, 'waste': 9679, 'sounds': 8328, 'promising': 6956, 'tube': 9272, 'meant': 5631, 'racist': 7093, 'result': 7429, 'creative': 2189, 'desperately': 2547, 'almost': 415, 'hear': 4216, 'crying': 2257, 'ugly': 9309, 'mexican': 5707, 'racism': 7092, 'charges': 1570, 'aside': 659, 'pile': 6640, 'beans': 884, 'offended': 6228, 'imo': 4529, 'breathtaking': 1206, 'donald': 2753, 'woods': 9880, 'south': 8334, 'apartheid': 552, 'kevin': 4992, 'kline': 5037, 'convincing': 2079, 'appeared': 571, 'denzel': 2495, 'washington': 9677, 'masterful': 5573, 'urge': 9442, 'patience': 6493, 'tells': 8903, 'incredible': 4588, 'seven': 7939, 'pounds': 6803, 'cry': 2256, 'smith': 8237, 'tune': 9275, 'vast': 9490, 'emotion': 3022, 'beautifully': 897, 'intense': 4706, 'humanity': 4428, 'compare': 1895, 'crash': 2171, 'raw': 7164, 'sticks': 8526, 'gives': 3895, 'deep': 2420, 'passion': 6481, 'exists': 3243, 'abundance': 179, 'therefore': 8980, 'pain': 6400, 'sometimes': 8296, 'lost': 5374, 'deeper': 2421, 'silent': 8104, 'indicate': 4597, 'dubbing': 2852, 'review': 7459, 'rene': 7356, 'lovely': 5386, 'reputation': 7388, 'maker': 5473, 'louise': 5381, 'brooks': 1249, 'ways': 9704, 'technically': 8886, 'switched': 8797, 'mode': 5818, '30s': 119, 'french': 3712, 'dialog': 2589, 'slapped': 8183, 'lip': 5293, 'movements': 5913, 'particular': 6464, 'come': 1851, 'explain': 3268, 'ms': 5921, 'preferred': 6839, 'morality': 5865, '1930': 19, 'slutty': 8222, 'wins': 9830, 'contest': 2032, 'macho': 5438, 'handle': 4126, 'fancy': 3367, 'spells': 8370, 'melodramatic': 5660, 'huh': 4423, 'underdeveloped': 9340, 'harold': 4167, 'lloyd': 5318, 'abused': 181, 'picked': 6627, 'took': 9116, 'resolution': 7406, 'superfluous': 8718, 'treatment': 9221, 'received': 7218, 'spirited': 8387, 'audiences': 737, 'implied': 4536, 'le': 5162, 'femme': 3442, 'du': 2849, 'rating': 7154, 'ned': 6028, 'wonderfully': 9870, 'australian': 748, 'taken': 8830, 'byrne': 1343, 'gang': 3792, 'explains': 3271, 'actions': 232, 'exceptional': 3215, 'stellar': 8506, 'brings': 1231, 'heath': 4227, 'orlando': 6315, 'bloom': 1076, 'fantastic': 3370, 'loyal': 5397, 'believed': 940, 'win': 9816, 'battle': 873, 'alas': 373, 'aspects': 667, 'avid': 764, 'supporter': 8729, 'slightly': 8210, 'disappointed': 2653, 'cover': 2151, 'covered': 2153, 'regardless': 7275, 'flaws': 3559, 'moving': 5917, 'sorts': 8320, 'emotions': 3025, 'assume': 686, 'mick': 5718, 'jagger': 4825, 'shelley': 8007, 'duvall': 2885, 'theatre': 8960, 'broadway': 1240, 'relief': 7316, 'eve': 3172, 'wicked': 9790, 'jennifer': 4856, 'cinderella': 1684, 'garden': 3803, 'matthew': 5594, 'prince': 6892, 'charming': 1579, 'jean': 4849, 'fairy': 3346, 'southern': 8335, 'martin': 5552, 'royal': 7618, 'orchestra': 6297, 'conductor': 1961, 'tiny': 9069, 'flow': 3587, 'comments': 1874, 'thrown': 9034, 'children': 1631, 'flows': 3591, 'happily': 4147, 'age': 329, 'continue': 2038, 'parents': 6446, 'tired': 9073, 'near': 6018, 'shootout': 8042, 'horses': 4393, 'red': 7243, 'catches': 1480, 'eye': 3313, 'bush': 1322, 'trail': 9174, 'western': 9751, 'paid': 6399, 'buddies': 1274, 'grand': 3987, 'slow': 8217, 'seriously': 7917, 'filming': 3490, 'door': 2761, 'move': 5910, 'cabin': 1346, 'peoples': 6539, 'praised': 6817, 'titles': 9079, 'season': 7824, 'episode': 3121, 'proper': 6967, 'investigation': 4757, 'agent': 333, 'cooper': 2088, 'throws': 9035, 'stones': 8547, 'bottle': 1150, 'identify': 4476, 'murderer': 5937, 'mentioning': 5680, 'supernatural': 8724, 'ability': 156, 'unnecessary': 9405, 'serves': 7924, 'cup': 2272, 'milk': 5736, 'laying': 5159, 'floor': 3581, 'gun': 4076, 'shoots': 8043, 'belly': 946, 'min': 5743, 'hell': 4244, 'comic': 1861, 'enemies': 3059, 'content': 2031, 'improvement': 4554, 'airplane': 361, 'triangle': 9233, 'sinks': 8140, 'post': 6792, 'submarine': 8645, 'casts': 1475, 'falling': 3354, 'barely': 841, 'horizon': 4380, 'our': 6331, 'kennedy': 4985, 'airport': 362, 'stuck': 8610, 'phoenix': 6607, 'nyc': 6182, 'politics': 6741, 'seemingly': 7858, 'foot': 3623, 'expect': 3248, 'continues': 2040, 'cusack': 2285, 'accent': 185, 'laughable': 5136, 'horrible': 4384, 'military': 5735, 'training': 9179, 'becoming': 906, 'genre': 3842, 'prominent': 6952, 'officer': 6237, 'gentleman': 3845, 'jane': 4832, 'honor': 4362, 'focuses': 3601, 'angle': 491, 'inspirational': 4676, 'interest': 4718, 'mentioned': 5679, 'carl': 1437, 'brashear': 1186, 'cuba': 2260, 'gooding': 3948, 'courage': 2142, 'shines': 8021, 'tunnel': 9277, 'vision': 9576, 'presenting': 6858, 'showing': 8070, 'adversity': 297, 'sunday': 8707, 'niro': 6097, 'central': 1520, 'initial': 4645, 'instance': 4681, 'hal': 4109, 'judge': 4918, 'pacing': 6388, 'ranting': 7137, 'needs': 6034, 'rises': 7517, 'occasion': 6205, 'rod': 7558, 'fascinating': 3383, 'dimensional': 2625, 'depth': 2513, 'faces': 3322, 'challenging': 1539, 'chill': 1632, 'suicide': 8692, 'comedian': 1853, 'analyze': 470, 'adventures': 295, 'rocky': 7557, 'meet': 5648, 'deniro': 2483, 'roots': 7595, 'personality': 6571, 'tortured': 9134, 'soul': 8323, 'pleasure': 6697, 'lately': 5130, 'legend': 5191, 'vance': 9477, 'wonder': 9867, 'step': 8507, 'co': 1791, 'gere': 3855, 'cameo': 1366, 'deleted': 2444, 'hackneyed': 4098, 'presentation': 6856, 'rated': 7151, 'sucker': 8674, 'underdog': 9341, 'areas': 603, 'compensate': 1904, 'shortcomings': 8049, '1938': 28, 'celebrating': 1505, 'hitler': 4323, 'visit': 9579, 'rome': 7580, 'backdrop': 800, 'sophia': 8308, 'loren': 5364, 'married': 5542, 'fascist': 3386, 'gabriel': 3773, 'mastroianni': 5580, 'housewife': 4408, 'sons': 8303, 'homosexual': 4355, 'fired': 3518, 'pursued': 7040, 'alone': 416, 'spouse': 8415, 'attend': 720, 'historical': 4317, 'celebration': 1506, 'relationship': 7299, 'spite': 8391, 'differences': 2610, 'historic': 4316, 'meeting': 5649, 'authorities': 754, 'count': 2128, 'king': 5024, 'victor': 9530, 'iii': 4495, 'describing': 2527, 'voice': 9594, 'romantic': 7579, 'sensibility': 7889, 'passionate': 6482, 'pros': 6975, 'splendid': 8393, 'sensible': 7890, 'results': 7432, 'elaborate': 2976, 'sentimental': 7898, 'colorful': 1836, 'atmospheric': 704, 'sensitive': 7891, 'deservedly': 2534, 'golden': 3939, '1978': 65, 'foreign': 3636, 'imagination': 4512, 'limited': 5274, 'scenarios': 7758, 'developing': 2576, 'place': 6661, 'semi': 7878, 'theatrical': 8961, '1982': 70, 'uses': 9453, 'dance': 2322, 'hall': 4112, 'illustrate': 4503, 'society': 8269, '1983': 71, 'scenario': 7757, 'unlikely': 9402, 'thomas': 9002, 'luis': 5410, 'revolutionary': 7468, 'paris': 6447, '1987': 75, 'roman': 7574, 'flat': 3553, 'strikes': 8588, 'marvelous': 5557, 'respective': 7415, 'apartments': 554, 'roof': 7586, 'spoiler': 8398, 'concept': 1946, 'destiny': 2554, 'answer': 521, 'asks': 664, 'chaos': 1556, 'theory': 8974, 'butterfly': 1334, 'china': 1636, 'chain': 1531, 'reaction': 7176, 'event': 3176, 'baseball': 853, 'motion': 5894, 'fresh': 3715, 'philosophical': 6605, 'likely': 5264, 'damn': 2316, 'underrated': 9345, 'sing': 8130, 'whoopi': 9786, 'goldberg': 3937, 'puts': 7047, 'actress': 238, 'recorded': 7234, 'frank': 3692, 'sinatra': 8125, 'sylvester': 8805, 'voices': 9596, 'sounded': 8326, 'portraying': 6773, 'puppets': 7029, 'creepy': 2203, 'rob': 7535, 'grant': 3995, 'doug': 2771, 'dwarf': 2888, 'comment': 1870, 'robbed': 7536, 'borrowed': 1140, 'returned': 7443, 'demand': 2465, 'warrant': 9668, 'heard': 4217, 'bay': 879, 'turner': 9284, 'tonight': 9112, 'oscar': 6320, 'month': 5854, 'winning': 9829, 'sequel': 7905, 'success': 8667, 'mary': 5560, 'winner': 9827, 'julie': 4929, 'andrews': 480, 'wherein': 9767, 'mixture': 5808, 'past': 6484, 'british': 1235, 'london': 5343, 'england': 3070, 'summer': 8703, '1940': 30, 'owen': 6376, 'general': 3831, 'guard': 4059, 'whereas': 9766, 'formerly': 3655, 'boom': 1124, 'ironically': 4781, 'final': 3498, 'reminds': 7344, 'dad': 2302, 'dealing': 2382, 'problems': 6909, 'war': 9652, 'suggested': 8688, 'appearance': 569, 'three': 9019, 'disney': 2689, 'fashion': 3387, 'road': 7534, 'soldiers': 8277, 'india': 4593, 'metal': 5702, 'scottish': 7788, 'female': 3438, 'costume': 2123, 'angela': 484, 'lansbury': 5113, 'price': 6883, 'sole': 8278, 'noteworthy': 6144, 'shortly': 8052, 'brief': 1222, 'balloon': 827, 'boys': 1172, 'picture': 6632, 'gray': 4008, 'yellow': 9954, 'bird': 1016, 'support': 8727, 'harvey': 4180, 'girls': 3892, 'santa': 7704, 'dennis': 2487, 'learning': 5175, 'rise': 7516, 'lifetime': 5248, 'relative': 7301, 'failure': 3339, 'cindy': 1685, 'roy': 7617, 'ian': 4463, 'predecessors': 6831, 'budding': 1275, 'surprising': 8748, 'possibly': 6791, 'cutting': 2293, 'roddy': 7559, 'witchcraft': 9846, 'bigger': 999, 'raid': 7102, 'imagined': 4515, 'countryside': 2135, 'sam': 7687, 'magic': 5454, 'seeking': 7853, 'sea': 7815, 'soccer': 8264, 'match': 5581, 'drawn': 2803, 'latter': 5134, 'glover': 3920, 'appreciate': 580, 'poetry': 6715, 'slide': 8207, 'choose': 1647, 'properly': 6968, 'drug': 2842, 'grey': 4029, 'gardens': 3804, 'enthralling': 3103, 'sad': 7662, 'beyond': 989, 'uncle': 9329, 'bathroom': 869, 'reader': 7179, 'eccentric': 2928, 'filmed': 3488, 'edie': 2940, 'outfits': 6340, 'include': 4573, 'nose': 6134, 'murder': 5935, 'rooms': 7591, 'joseph': 4907, 'sherlock': 8015, 'holmes': 4344, 'accurate': 210, 'excellently': 3211, 'digital': 2619, 'unusual': 9423, 'piece': 6635, 'round': 7607, 'tim': 9057, 'cox': 2161, 'name': 5985, 'impressed': 4545, 'twists': 9299, 'sci': 7772, 'fi': 3456, 'women': 9865, 'talked': 8840, 'disgusting': 2682, 'views': 9546, 'gender': 3829, 'lower': 5394, 'tolerance': 9096, 'depressing': 2511, 'whatever': 9757, 'cause': 1490, 'difference': 2609, 'begins': 922, 'subsequent': 8648, 'headed': 4210, 'charlton': 1577, 'heston': 4275, 'head': 4208, 'international': 4726, 'soylent': 8338, 'corporation': 2107, 'realize': 7197, 'gorgeous': 3958, 'security': 7844, 'pleasures': 6698, 'furniture': 3761, 'apartment': 553, 'masses': 5569, 'dirt': 2642, 'unemployed': 9361, 'abandoned': 151, 'cars': 1456, 'severe': 7943, 'indeed': 4590, 'died': 2605, 'discuss': 2670, 'edward': 2951, 'robinson': 7547, 'sidekick': 8087, 'depressed': 2510, 'allegorical': 402, 'profound': 6933, 'westerns': 9752, 'excruciatingly': 3228, 'impossible': 4543, 'emphasize': 3029, 'bland': 1043, 'violence': 9561, 'appalling': 562, 'convincingly': 2080, 'executed': 3231, 'flip': 3575, 'betrays': 980, 'ride': 7492, 'negative': 6036, 'verhoeven': 9509, 'garbage': 3800, 'hack': 4095, 'admission': 275, 'chapters': 1560, 'bored': 1134, 'scratch': 7789, 'supported': 8728, 'trash': 9204, 'alive': 397, 'basically': 859, 'steals': 8497, 'portion': 6765, 'idiot': 4480, 'anime': 504, 'pits': 6655, 'park': 6449, 'beloved': 949, 'moon': 5861, 'cheese': 1604, '22': 107, 'adventure': 294, 'earliest': 2906, 'reminiscent': 7345, 'box': 1162, 'admirable': 269, 'hugely': 4419, 'traditional': 9169, 'generation': 3835, 'aware': 776, 'shall': 7972, 'seek': 7852, 'popularity': 6756, 'recent': 7221, 'impressive': 4548, 'lacks': 5088, 'possess': 6784, 'fairly': 3344, 'standard': 8452, 'plain': 6668, 'centers': 1519, 'town': 9153, 'ernest': 3133, 'keller': 4981, 'psycho': 7004, 'offers': 6235, 'unseen': 9415, 'carries': 1453, 'bach': 796, 'consider': 2001, 'gem': 3826, 'images': 4509, 'hip': 4307, 'lie': 5242, 'claim': 1706, 'knowing': 5051, 'implies': 4537, 'cats': 1487, 'daddy': 2303, 'sit': 8147, 'noir': 6106, 'manage': 5488, 'sophistication': 8311, 'moody': 5860, 'phrase': 6618, 'foreboding': 3635, 'sidewalk': 8089, 'difficult': 2613, 'copy': 2094, 'manhattan': 5498, 'rough': 7605, 'cable': 1347, 'channel': 1553, 'belongs': 948, 'category': 1484, 'opening': 6275, 'curtain': 2283, 'drawing': 2801, 'rogue': 7564, 'loner': 5347, 'detective': 2565, 'marc': 5517, 'dixon': 2725, 'closer': 1770, 'threatening': 9017, 'familiar': 3359, 'dana': 2321, 'bleak': 1052, 'stare': 8463, 'troubled': 9259, 'intensity': 4708, 'uncomfortable': 9331, 'yeah': 9948, 'suspects': 8769, 'newly': 6069, 'promoted': 6958, 'karl': 4961, 'malden': 5478, 'outing': 6341, 'warning': 9665, 'hates': 4187, 'stop': 8550, 'rats': 7158, 'tough': 9144, 'boss': 1141, 'rolls': 7572, 'complaints': 1916, 'receiving': 7220, 'hook': 4365, 'advice': 300, 'matters': 5592, 'hands': 4130, 'finds': 3505, 'instincts': 4687, 'passed': 6477, 'cops': 2093, 'partner': 6469, 'questionable': 7069, 'threatens': 9018, 'bogart': 1097, 'escape': 3140, 'nowhere': 6161, 'turn': 9282, 'discovers': 2668, 'virtually': 9569, 'tierney': 9050, 'bachelor': 798, 'taut': 8868, 'gripping': 4037, 'polished': 6736, 'parody': 6454, 'fodder': 3603, 'sappy': 7706, 'notch': 6140, 'slick': 8206, 'considerable': 2002, 'gentle': 3844, 'heaven': 4229, 'grow': 4048, 'destruction': 2559, 'rope': 7596, 'cut': 2289, 'innocent': 4654, 'false': 3356, 'wildly': 9806, 'slight': 8208, 'shift': 8017, 'wind': 9818, 'punch': 7023, 'factors': 3328, 'control': 2054, 'darkest': 2347, 'surface': 8740, 'pick': 6626, 'sterling': 8517, 'dub': 2850, 'model': 5819, 'mystery': 5972, 'science': 7773, 'fans': 3368, 'heck': 4233, 'terrific': 8926, 'wit': 9844, 'pace': 6385, 'stopping': 8552, 'busby': 1319, 'numbers': 6170, 'ahead': 344, 'street': 8575, 'definitive': 2438, 'jimmy': 4878, 'cagney': 1351, 'releases': 7309, 'strictly': 8586, 'direct': 2632, 'references': 7258, 'trained': 9178, 'bother': 1146, 'wanting': 9649, 'become': 904, 'spotted': 8414, 'filmmaker': 3491, 'asked': 661, 'guessed': 4064, 'avoid': 765, 'overlook': 6362, 'idiotic': 4481, 'occurring': 6214, 'couch': 2125, 'populated': 6757, 'grade': 3978, 'desperate': 2546, 'effeminate': 2959, 'husbands': 4452, 'suppose': 8733, 'kicks': 5001, 'awakening': 771, 'social': 8265, 'spoke': 8401, 'racial': 7090, 'vietnam': 9538, 'sexual': 7950, 'fabric': 3318, 'news': 6071, 'largely': 5117, 'succeeded': 8664, 'followed': 3611, 'follows': 3614, 'equal': 3124, 'basis': 862, 'dedicated': 2415, 'admittedly': 279, 'consideration': 2004, 'century': 1524, 'footage': 3624, 'mixed': 5806, 'color': 1834, 'fiction': 3460, 'clips': 1760, 'situations': 8155, 'sided': 8086, '1st': 90, '2003': 96, 'drab': 2784, 'un': 9318, 'spectacular': 8360, 'ended': 3050, 'thru': 9036, 'sequels': 7906, 'etc': 3158, 'renting': 7361, 'buying': 1338, 'fare': 3374, 'cruella': 2249, 'prison': 6901, 'busy': 1327, 'helping': 4250, 'homeless': 4349, 'dogs': 2739, 'clock': 1763, 'hypnotic': 4460, 'cure': 2273, 'reversed': 7458, 'determined': 2569, 'coat': 1795, 'wanted': 9648, 'glenn': 3908, 'feels': 3430, 'repeat': 7363, 'previous': 6880, 'changed': 1550, 'ken': 4984, '17': 14, 'screwed': 7805, 'phantasm': 6594, '1988': 76, 'gory': 3960, 'creator': 2191, '1994': 83, 'originality': 6311, 'attempts': 718, 'tiresome': 9074, 'disappointing': 2654, 'comparison': 1898, 'spoilers': 8399, 'introduced': 4745, 'mysterious': 5970, 'sentinel': 7900, 'brain': 1179, 'sucking': 8675, 'flying': 3596, 'balls': 828, 'annoying': 516, 'kid': 5002, 'swinging': 8794, 'crew': 2204, 'qualities': 7058, 'pony': 6745, 'guitar': 4074, 'talks': 8842, 'loose': 5359, 'baldwin': 824, 'replaced': 7370, 'james': 4828, 'opinion': 6283, 'disappointment': 2655, 'acceptable': 188, 'expectations': 3250, 'foremost': 3637, 'weren': 9744, 'brando': 1185, 'damon': 2318, 'irony': 4782, 'salvation': 7686, 'office': 6236, 'simmons': 8114, 'sewer': 7946, 'weak': 9706, 'power': 6807, 'filled': 3484, 'electricity': 2983, 'restaurant': 7424, 'pull': 7015, 'vocal': 9593, 'vivian': 9590, 'proceedings': 6911, 'obvious': 6203, 'weakest': 9708, 'terms': 8922, 'shoe': 8037, 'nightclub': 6086, 'stage': 8435, 'hadn': 4102, 'whenever': 9764, 'reminded': 7341, 'cash': 1465, 'square': 8424, 'phony': 6610, 'drew': 2820, 'sequence': 7907, '1955': 44, 'musicals': 5950, 'changing': 1552, 'location': 5330, 'photography': 6616, '1949': 39, 'stuff': 8620, 'taking': 8833, 'dolls': 2744, 'bound': 1154, 'cute': 2290, 'legal': 5190, 'regard': 7272, 'les': 5214, 'certain': 1527, 'major': 5470, 'complaint': 1915, 'bet': 977, 'wedding': 9723, 'added': 254, 'marion': 5527, 'waiting': 9619, 'upstairs': 9439, 'suddenly': 8678, 'switch': 8796, 'convey': 2069, 'cross': 2235, 'extremely': 3310, 'talented': 8836, 'spike': 8380, 'franklin': 3695, 'dukes': 2866, 'host': 4395, 'wayans': 9702, 'brothers': 1253, 'colour': 1838, 'stupidity': 8632, 'humour': 4434, 'gags': 3778, 'toilet': 9091, 'operating': 6281, 'baby': 793, 'accepted': 190, 'months': 5855, 'shadow': 7960, 'foster': 3671, 'master': 5572, 'stupidest': 8631, 'planet': 6672, 'earth': 2914, 'stolen': 8542, 'purse': 7038, 'pursue': 7039, 'surrounded': 8755, 'morons': 5881, 'bunny': 1301, 'remotely': 7348, 'clue': 1783, 'prior': 6900, 'bat': 865, 'awards': 775, 'mans': 5511, 'guilt': 4070, 'limitations': 5273, 'clever': 1738, 'relying': 7323, 'devotion': 2587, '1000': 5, 'shorts': 8053, 'horrors': 4391, 'business': 1323, 'insulting': 4692, 'criticism': 2224, 'wondering': 9871, 'reviewer': 7461, 'desired': 2543, 'bashing': 857, 'satisfy': 7724, 'mindless': 5746, 'empty': 3037, 'stick': 8524, 'message': 5696, 'assault': 674, 'draws': 2804, 'spirit': 8386, 'curtis': 2284, 'party': 6472, 'laughed': 5138, 'hurt': 4448, 'naturally': 6008, 'pie': 6634, 'tasteless': 8864, 'hole': 4337, 'purpose': 7036, 'nudity': 6168, 'glad': 3897, 'silly': 8106, 'ron': 7584, 'melinda': 5657, 'engaged': 3065, 'dating': 2360, 'scared': 7749, 'weekend': 9726, 'miami': 5712, 'marriage': 5541, 'accomplished': 204, 'likable': 5260, 'seth': 7931, 'nerves': 6054, 'wanna': 9645, 'wild': 9803, 'tears': 8883, 'mccoy': 5613, 'spock': 8395, 'trapped': 9202, 'ice': 4464, 'capt': 1411, 'kirk': 5030, 'colonial': 1832, 'former': 3654, 'pair': 6410, 'freezing': 3711, 'third': 8995, 'sexy': 7953, 'hartley': 4176, 'spends': 8374, 'feeling': 3428, 'attraction': 732, 'throwing': 9033, 'caution': 1494, 'leaving': 5182, 'grasp': 3999, 'stand': 8451, 'hilt': 4297, 'knocking': 5048, 'installment': 4680, 'captain': 1412, 'shatner': 7991, 'responsible': 7422, 'sending': 7881, 'trio': 9245, 'modern': 5823, 'fit': 3534, 'harder': 4155, 'experienced': 3258, 'risks': 7520, 'producers': 6918, 'cringe': 2212, 'awe': 779, 'simplicity': 8118, 'terrifying': 8928, 'laurie': 5149, 'jamie': 4830, 'madman': 5445, 'escaping': 3143, 'mental': 5675, 'institution': 4688, 'brutally': 1263, 'murdering': 5939, 'myers': 5964, 'teenage': 8895, 'population': 6758, 'brainless': 1180, 'slasher': 8186, 'frequently': 3714, 'splatter': 8392, 'theaters': 8959, '1970s': 57, 'rightfully': 7503, 'downright': 2778, 'entries': 3113, 'teen': 8894, 'argue': 606, 'tongue': 9110, 'cheek': 1599, 'fail': 3335, 'carpenter': 1447, 'todays': 9086, 'sadistic': 7664, 'scares': 7750, 'skill': 8164, 'seal': 7817, 'die': 2604, 'idiots': 4482, 'mistake': 5794, 'swallow': 8781, 'ridiculously': 7497, 'elements': 2987, 'inventive': 4753, 'murders': 5941, 'pieces': 6636, 'order': 6299, 'twice': 9293, 'primitive': 6891, 'repeated': 7364, 'lesser': 5219, 'conflicted': 1971, 'exception': 3214, 'shape': 7981, 'asking': 663, 'pulls': 7018, 'chilling': 1634, 'brilliance': 1226, 'supports': 8732, 'lure': 5419, 'freedom': 3708, 'advantage': 293, 'recognize': 7227, 'fear': 3413, 'luckily': 5405, 'intimacy': 4736, 'gear': 3820, 'stops': 8553, 'flawed': 3557, 'immensely': 4525, 'warned': 9663, 'scare': 7746, 'redundant': 7250, 'courtney': 2147, 'escapes': 3142, 'desert': 2529, 'raped': 7141, 'stalked': 8444, 'appears': 573, 'craig': 2168, 'attempting': 717, 'mickey': 5719, 'rourke': 7610, 'imitation': 4520, 'supposedly': 8735, 'protect': 6980, 'serve': 7922, 'meanwhile': 5633, 'logic': 5337, 'flies': 3571, 'returns': 7445, 'unanswered': 9320, 'questions': 7071, 'saved': 7731, 'baker': 818, 'insignificant': 4668, 'disc': 2661, 'necessarily': 6024, 'depending': 2502, 'smaller': 8225, 'forgive': 3645, 'imaginative': 4513, 'alan': 371, 'arkin': 615, 'claire': 1710, 'unrealistic': 9412, 'personally': 6572, 'readily': 7181, 'helped': 4248, 'engage': 3064, 'gratuitous': 4003, 'adult': 287, 'language': 5111, 'swear': 8783, 'correctly': 2112, 'cameos': 1367, 'reflects': 7265, 'chinese': 1637, 'underground': 9342, 'bands': 831, 'current': 2278, 'culture': 2268, 'succeeding': 8665, 'pulling': 7017, 'failing': 3337, 'transfer': 9185, 'courtroom': 2148, 'abraham': 165, 'lincoln': 5277, 'henry': 4257, 'fonda': 3616, 'trial': 9231, 'walks': 9630, 'statue': 8488, 'acted': 229, 'spark': 8348, 'suspect': 8767, 'melodrama': 5659, 'starring': 8469, 'ingrid': 4639, 'bergman': 967, 'meandering': 5625, 'forwarding': 3670, 'fall': 3352, 'asleep': 665, 'whom': 9785, 'crush': 2253, 'motif': 5893, 'bicycle': 996, 'thief': 8986, 'extended': 3301, 'metaphor': 5703, 'juvenile': 4948, 'discipline': 2663, 'accused': 212, 'societal': 8267, 'confines': 1968, 'sorry': 8318, 'reviewers': 7462, 'stated': 8480, 'vintage': 9560, '20th': 104, 'fox': 3678, 'basic': 858, 'ingredients': 4638, 'determination': 2567, 'comedians': 1854, 'situation': 8154, 'essence': 3147, 'eternal': 3159, 'faced': 3321, 'namely': 5987, 'related': 7294, 'stress': 8580, 'checked': 1596, 'staying': 8492, 'plausible': 6682, 'circumstances': 1696, 'awhile': 785, 'relate': 7293, 'caused': 1491, 'stan': 8449, 'ollie': 6258, 'universal': 9393, 'appeal': 565, 'presented': 6857, 'delightfully': 2454, 'slapstick': 8184, 'roach': 7533, 'studios': 8617, 'exclusively': 3226, 'hurry': 4447, 'finish': 3510, 'stayed': 8491, 'continued': 2039, 'catholic': 1486, 'church': 1679, 'sin': 8124, 'individual': 4602, 'ritual': 7524, 'sins': 8141, 'dying': 2891, 'often': 6244, 'individuals': 4603, 'thereby': 8979, 'denying': 2494, 'entrance': 3112, 'redemption': 7246, 'overt': 6368, 'wander': 9641, 'combines': 1848, 'religious': 7319, 'anti': 528, 'files': 3482, 'thorn': 9004, 'birds': 1017, 'alex': 384, 'ledger': 5185, 'priest': 6886, 'demon': 2473, 'fighting': 3476, 'priests': 6887, 'mentor': 5682, 'peter': 6586, 'sends': 7882, 'investigate': 4755, 'underworld': 9357, 'ominous': 6263, 'demonic': 2474, 'claiming': 1708, 'surviving': 8762, 'knight': 5042, 'intrigue': 4740, 'occasional': 6206, 'bursts': 1314, 'despair': 2545, 'displayed': 2692, 'notably': 6139, 'forth': 3662, 'arc': 597, 'containing': 2024, 'herrings': 4271, 'gaps': 3798, 'narrative': 5993, 'confusing': 1980, 'structure': 8602, 'coupled': 2140, 'clear': 1735, 'antagonist': 525, 'blatantly': 1049, 'background': 802, 'eating': 2924, 'explained': 3269, 'dry': 2848, 'exposition': 3292, 'combine': 1846, '80': 141, 'subtle': 8656, 'organic': 6304, 'torn': 9130, 'lisa': 5295, 'exotic': 3246, 'remains': 7329, 'watchable': 9684, 'sensibilities': 7888, 'angry': 493, 'functions': 3750, 'sheer': 8002, 'prevent': 6876, 'critical': 2223, 'commercial': 1875, 'amounts': 459, 'recommended': 7231, 'memory': 5670, 'billed': 1006, 'error': 3138, 'attracted': 731, 'sensitivity': 7892, 'exudes': 3312, 'cheers': 1603, 'reads': 7183, 'proves': 6990, 'darker': 2346, 'agreed': 341, 'straightforward': 8562, 'nicole': 6082, 'kidman': 5005, 'vehicle': 9498, 'wrapped': 9914, 'closing': 1774, 'chaplin': 1558, 'implausible': 4534, 'ebert': 2927, 'screwball': 7804, 'ready': 7184, '1930s': 20, 'weird': 9730, 'birthday': 1019, 'killer': 5012, 'reign': 7287, '2007': 100, 'adam': 246, 'sandler': 7698, 'cheadle': 1588, 'tyler': 9302, 'sutherland': 8779, 'dillon': 2622, 'jonathan': 4903, 'banks': 834, 'allen': 404, 'paula': 6503, 'affecting': 309, 'thoroughly': 9005, '11': 6, 'united': 9392, 'college': 1827, 'roommate': 7589, 'continuing': 2041, 'date': 2357, 'wealth': 9711, 'happiness': 4148, 'ally': 413, 'offerings': 6234, 'genuine': 3848, 'week': 9725, 'solution': 8283, 'zhang': 9988, 'purple': 7035, 'commented': 1872, 'significant': 8100, 'portions': 6766, 'endless': 3053, 'smoking': 8240, 'cigarettes': 1682, 'sitting': 8153, 'shifts': 8018, 'beforehand': 915, 'understanding': 9349, 'smiles': 8235, 'participants': 6461, 'apart': 551, 'angel': 483, 'sent': 7894, 'mum': 5929, 'amused': 463, 'unfunny': 9375, 'corky': 2099, 'romano': 7578, 'unlikable': 9399, 'jokes': 4898, 'mannered': 5507, 'vet': 9519, 'tries': 9242, 'clumsy': 1787, 'fbi': 3412, 'destroy': 2555, 'trace': 9160, 'believes': 942, 'duty': 2884, 'mayhem': 5606, 'ensue': 3089, 'settle': 7935, 'chris': 1662, 'kattan': 4967, 'solely': 8279, 'slap': 8182, 'snl': 8254, 'tone': 9107, 'rely': 7322, 'telling': 8902, 'mafia': 5450, 'awkward': 786, 'plenty': 6699, 'forgettable': 3642, 'screenwriters': 7802, 'comedic': 1855, 'penn': 6535, 'falk': 3351, 'car': 1419, 'latest': 5132, 'react': 7175, 'according': 206, 'wondered': 9868, 'warhols': 9658, 'bjm': 1031, 'exploitation': 3278, 'max': 5602, 'total': 9138, 'portrait': 6768, 'genius': 3841, 'ourselves': 6332, 'rented': 7360, '90': 144, 'modesty': 5825, 'alexandra': 386, 'raymond': 7166, 'cruz': 2255, 'garcia': 3802, 'tarantino': 8853, 'interested': 4719, 'willie': 9811, 'drop': 2834, 'wicker': 9791, 'ask': 660, 'warn': 9662, 'sarcasm': 7710, 'cage': 1350, 'island': 4794, 'answers': 524, 'holes': 4338, 'fill': 3483, 'library': 5240, 'shady': 7962, 'outline': 6344, 'delightful': 2453, 'ex': 3199, 'via': 9523, 'wrongly': 9931, 'rolling': 7571, 'lake': 5094, 'district': 2713, 'hills': 4296, 'sheep': 8001, 'bunch': 1299, 'amateur': 435, 'chases': 1583, 'skilled': 8165, 'hours': 4404, 'layers': 5158, 'east': 2918, 'english': 3071, 'shameful': 7975, 'monty': 5857, 'sally': 7681, 'field': 3464, 'andrew': 479, 'honeymoon': 4360, 'vegas': 9497, 'soap': 8261, 'wall': 9631, 'beats': 894, 'daytime': 2373, '1991': 80, 'duchovny': 2854, 'unfair': 9366, 'addicted': 256, 'struck': 8601, 'accident': 195, 'private': 6904, 'millionaire': 5741, 'blossom': 1077, 'angelina': 486, 'jolie': 4900, 'gangsters': 3795, 'immersed': 4526, 'credible': 2196, 'detract': 2570, 'cowboy': 2159, 'hoffman': 4332, 'daniel': 2336, 'lewis': 5233, 'butcher': 1330, 'gangs': 3793, 'comparable': 1894, 'ratso': 7159, 'raises': 7112, 'levels': 5231, 'buck': 1270, 'naive': 5983, 'altogether': 430, 'teaches': 8877, 'importantly': 4541, 'gritty': 4039, 'clearly': 1736, 'possession': 6787, 'insight': 4665, 'accept': 187, 'abuse': 180, 'fully': 3747, 'gosh': 3961, 'inner': 4652, 'justify': 4946, 'eli': 2992, 'helpful': 4249, 'led': 5184, 'evident': 3190, 'conviction': 2075, 'computers': 1938, 'devices': 2581, 'receive': 7217, 'messages': 5697, 'outer': 6338, 'guarded': 4060, 'campy': 1378, 'christopher': 1672, 'split': 8394, 'divorce': 2723, 'planning': 6674, 'appealing': 566, 'sympathetic': 8811, 'monster': 5849, 'adults': 289, 'hint': 4304, 'concepts': 1948, 'contemporary': 2028, 'dancers': 2325, 'musicians': 5952, 'equally': 3125, 'interpretation': 4730, 'technical': 8885, 'classical': 1721, 'strongly': 8600, 'damage': 2312, 'garner': 3808, 'spaghetti': 8342, 'market': 5532, 'weaver': 9720, 'claude': 1726, 'marley': 5537, 'darn': 2351, 'stereotyped': 8514, 'successfully': 8669, 'notorious': 6153, 'outlaw': 6343, 'saloon': 7683, 'eastwood': 2920, 'measures': 5635, 'nearby': 6019, 'gold': 3936, 'lock': 5332, 'key': 4993, 'regular': 7283, 'heist': 4238, 'protagonists': 6979, 'break': 1194, 'prisoner': 6902, 'guts': 4086, 'italian': 4804, 'fest': 3447, 'thirties': 8998, 'allan': 399, 'listed': 5297, 'chorus': 1659, 'ah': 343, 'mcbain': 5609, 'forever': 3639, 'simpsons': 8122, 'remain': 7325, 'tremendously': 9227, 'outrageously': 6347, 'dude': 2857, 'heroes': 4266, 'walken': 9627, 'labeled': 5079, 'guilty': 4071, 'convince': 2076, 'intellectual': 4699, 'preposterous': 6852, 'non': 6114, 'clichéd': 1744, 'nonsensical': 6119, 'staged': 8436, 'drawings': 2802, 'delirious': 2455, 'pow': 6805, 'soldier': 8276, 'symbol': 8807, 'debt': 2395, 'rebel': 7210, 'revolution': 7467, 'corrupt': 2115, 'president': 6861, 'columbia': 1840, 'el': 2975, 'balcony': 822, 'travels': 9213, 'financial': 3501, 'assistance': 680, 'fed': 3422, 'injustice': 4650, 'miserable': 5777, 'plane': 6670, 'gigantic': 3878, 'fool': 3619, 'user': 9451, 'add': 253, 'senseless': 7886, 'needless': 6032, 'heroic': 4267, 'goal': 3924, 'mission': 5792, 'squad': 8423, '100': 4, 'coherent': 1807, 'flamboyant': 3543, 'exact': 3200, 'outrageous': 6346, 'national': 6003, 'apocalypse': 558, 'explosions': 3288, 'soundtrack': 8329, 'joan': 4880, 'sings': 8136, 'arch': 598, '60s': 133, 'spell': 8367, 'twisted': 9298, 'evokes': 3194, 'teacher': 8875, 'linked': 5287, 'antonioni': 535, 'twelve': 9290, 'print': 6898, 'projected': 6946, 'correct': 2111, 'size': 8159, 'immense': 4524, 'restored': 7426, 'cultural': 2267, 'agency': 331, 'importance': 4539, 'keeping': 4976, 'gasp': 3812, 'valley': 9469, 'thousand': 9011, 'shock': 8030, 'intentionally': 4712, 'wake': 9622, 'awareness': 777, 'entirely': 3108, 'astonishing': 694, '80s': 142, 'begun': 924, 'affection': 310, 'olivia': 6256, 'leonard': 5212, 'romeo': 7581, 'juliet': 4930, 'daylight': 2371, 'enjoyment': 3082, 'shoulder': 8058, 'padded': 6395, 'haired': 4107, 'hippie': 4308, 'force': 3630, 'realised': 7188, 'inside': 4664, 'answered': 522, 'uh': 9310, 'secretly': 7839, 'thrilled': 9022, 'march': 5519, 'undoubtedly': 9358, 'constructed': 2017, 'environment': 3115, 'glimpse': 3909, 'newspaper': 6072, 'photo': 6611, 'mysteriously': 5971, 'antics': 532, 'alice': 390, 'peace': 6517, 'thinks': 8993, 'moron': 5879, 'advise': 301, 'hits': 4324, 'acid': 222, 'thrill': 9021, 'wasting': 9682, 'requires': 7392, 'info': 4629, 'defend': 2427, 'paper': 6433, 'ringing': 7507, 'clouds': 1779, 'sunny': 8710, 'lion': 5289, 'forty': 3667, 'fault': 3400, 'stiff': 8527, 'ultra': 9315, 'unlike': 9400, 'clockwork': 1764, 'orange': 6296, 'sum': 8700, 'straw': 8571, 'pete': 6585, 'walker': 9628, 'desire': 2542, 'bedroom': 908, 'pitiful': 6654, 'misogynistic': 5786, 'merely': 5688, 'depiction': 2507, 'leg': 5188, 'par': 6436, 'makers': 5474, 'daring': 2344, 'unpleasant': 9408, 'aim': 351, 'latin': 5133, 'removed': 7350, 'likewise': 5266, 'remove': 7349, 'noble': 6102, 'impulse': 4556, 'ealing': 2902, 'carol': 1445, 'reed': 7251, 'graham': 3982, 'greene': 4021, 'fallen': 3353, 'idol': 4484, 'sublime': 8644, 'powell': 6806, 'sidney': 8090, 'lumet': 5413, 'hopkins': 4378, 'glory': 3917, 'hateful': 4186, 'celluloid': 1512, 'bette': 982, 'davis': 2367, 'flop': 3583, 'variation': 9483, 'hilariously': 4293, 'mismatched': 5785, 'styles': 8635, 'distinction': 2700, 'phones': 6609, 'misunderstood': 5801, 'described': 2525, 'shelf': 8005, 'alien': 392, 'behaviour': 929, 'warner': 9664, 'stanwyck': 8459, 'eleven': 2991, 'wilder': 9804, 'double': 2768, 'lily': 5270, 'powers': 6810, 'worn': 9896, 'daughter': 2361, 'owner': 6381, 'steel': 8502, 'rendered': 7353, 'offered': 6232, 'customers': 2288, 'train': 9177, 'corporate': 2106, 'ladder': 5089, 'blazing': 1051, 'eyed': 3314, 'methods': 5706, 'aggressive': 336, 'wayne': 9703, 'handed': 4123, 'toward': 9149, 'company': 1893, 'funds': 3753, 'tacked': 8822, 'touches': 9142, 'friendship': 3722, 'chico': 1625, 'immigrant': 4527, 'philosophy': 6606, 'regarding': 7274, 'avoiding': 767, 'sentimentality': 7899, 'reviewed': 7460, 'chosen': 1661, 'edited': 2942, 'tech': 8884, 'rendering': 7354, 'issue': 4801, 'prefer': 6837, 'ps': 6998, 'spelling': 8369, 'jesse': 4864, 'celine': 1509, 'ethan': 3161, 'hawke': 4199, 'strangers': 8569, 'european': 3167, 'widely': 9793, 'manages': 5492, 'explore': 3283, 'vienna': 9537, 'offer': 6231, 'infatuated': 4618, 'sunrise': 8711, 'breath': 1202, 'decline': 2413, 'charisma': 1571, 'inspired': 4678, 'canadian': 1381, 'available': 761, 'region': 7278, 'uk': 9311, '13': 8, 'seasons': 7826, 'amazon': 440, 'shepherd': 8012, 'brick': 1216, 'harris': 4169, 'fred': 3705, 'priceless': 6884, 'godfather': 3928, 'spoof': 8404, 'kinds': 5023, 'stock': 8539, 'uneven': 9362, 'humble': 4430, 'wretched': 9921, 'holy': 4346, 'law': 5151, 'conflict': 1970, 'sub': 8639, 'omen': 6262, 'jumped': 4933, 'beware': 988, 'fooled': 3620, 'widescreen': 9795, 'ratio': 7156, 'generally': 3832, 'producer': 6917, 'hopelessly': 4375, 'travesty': 9214, 'masquerading': 5566, 'convinced': 2077, 'adapted': 251, 'rapist': 7145, 'terrified': 8927, 'roommates': 7590, 'tables': 8820, 'proved': 6989, 'arrested': 631, 'confession': 1964, 'claustrophobic': 1728, 'farrah': 3379, 'fawcett': 3410, 'awarded': 774, 'victim': 9528, 'refuses': 7270, 'critics': 2228, 'russo': 7649, 'slimy': 8212, 'challenge': 1536, 'assumed': 687, 'diana': 2594, 'stuffed': 8621, 'fireplace': 3521, 'faint': 3341, 'grabs': 3974, 'funeral': 3754, 'material': 5585, 'platoon': 6681, 'singers': 8132, 'flowers': 3589, 'admirer': 274, 'clichés': 1745, 'jail': 4826, 'religion': 7318, 'sunk': 8709, 'granddaughter': 3988, 'leslie': 5217, 'caron': 1446, 'notes': 6143, 'button': 1335, 'olympia': 6260, 'dukakis': 2864, 'grabbing': 3973, 'scotland': 7786, 'converted': 2068, 'reunited': 7448, 'youngsters': 9969, 'intend': 4704, 'jason': 4841, 'rachel': 7089, 'ward': 9653, 'heat': 4226, 'footsteps': 3626, 'flashback': 3548, 'weirdness': 9731, 'wars': 9672, 'tax': 8869, 'lucas': 5402, 'christensen': 1664, '60': 132, 'fights': 3477, 'edge': 2937, 'fleeting': 3563, 'jar': 4838, 'picks': 6630, 'jedi': 4851, 'overlong': 6361, 'husband': 4451, 'tends': 8917, 'occasionally': 6207, 'videos': 9535, 'redford': 7247, 'perception': 6545, 'montana': 5853, 'upbringing': 9430, 'calling': 1361, 'critic': 2222, 'disagree': 2646, 'contemplate': 2026, 'rhythm': 7479, 'fisher': 3531, 'boxer': 1163, 'brad': 1175, 'pitt': 6656, 'alcoholism': 381, 'applies': 578, 'burns': 1310, 'worms': 9895, 'bait': 816, 'wait': 9617, 'table': 8819, 'plate': 6679, 'jessie': 4866, 'emily': 3018, 'chicago': 1621, 'narrator': 5994, 'comparing': 1897, 'nominated': 6111, 'visionary': 9577, 'deserves': 2535, 'technology': 8890, 'magnificently': 5459, 'ultimate': 9312, 'curse': 2281, 'attending': 723, 'toronto': 9132, 'messed': 5698, 'fido': 3463, 'distribution': 2711, 'shaun': 7993, 'currie': 2280, 'themed': 8967, 'press': 6863, '50s': 130, 'infamous': 4617, 'pulp': 7019, 'carrie': 1451, 'moss': 5886, 'dylan': 2893, 'blake': 1039, 'nelson': 6046, 'testament': 8938, 'explores': 3285, 'zombies': 9994, 'servants': 7921, 'servant': 7920, 'butler': 1332, 'labor': 5080, 'pet': 6584, 'acts': 240, 'possibilities': 6788, 'classy': 1725, 'bitter': 1028, 'jumps': 4935, 'beaten': 891, 'rebellious': 7212, 'starting': 8475, 'drift': 2822, 'tolerate': 9097, 'loads': 5323, 'deadpan': 2378, 'satire': 7719, 'em': 3007, 'destroying': 2557, 'absurd': 176, 'cold': 1812, 'blooded': 1073, 'jaws': 4843, 'humans': 4429, 'realism': 7190, 'directing': 2634, 'blamed': 1041, 'excuses': 3230, 'unclear': 9330, 'tactics': 8824, 'practically': 6813, 'captured': 1416, 'doses': 2767, '1984': 72, 'dickens': 2599, 'christmas': 1671, 'clive': 1761, 'scrooge': 7812, 'met': 5701, 'detail': 2562, 'literary': 5306, '1951': 42, 'achieved': 216, 'honesty': 4359, 'tribute': 9235, 'gifted': 3877, 'miraculous': 5769, 'joy': 4912, 'trade': 9166, 'finest': 3507, 'expression': 3298, 'ring': 7506, 'maintain': 5466, 'integrity': 4698, 'notable': 6138, 'alec': 382, 'guinness': 4073, 'welcome': 9733, 'carter': 1457, 'grim': 4032, 'sincerity': 8129, 'susannah': 8766, 'mrs': 5920, 'anthony': 527, 'walters': 9639, 'heartfelt': 4223, 'roger': 7562, 'lucy': 5407, 'belle': 945, 'flawless': 3558, 'versions': 9515, 'image': 4507, 'satisfying': 7725, 'demands': 2467, 'schedule': 7762, 'holiday': 4339, 'baffling': 813, 'relations': 7298, 'misfits': 5781, 'greenaway': 4020, 'inspiration': 4675, 'fellini': 3435, 'feelings': 3429, 'clarity': 1714, 'pretentious': 6873, 'divided': 2720, 'introduction': 4748, 'notices': 6149, 'seconds': 7836, 'ignored': 4490, 'polly': 6742, 'dim': 2623, 'shades': 7959, 'render': 7352, 'services': 7926, 'exchange': 3221, 'suggestion': 8690, 'incestuous': 4566, 'disregard': 2696, 'carrying': 1455, 'pregnant': 6840, 'legs': 5196, 'amanda': 434, 'plummer': 6708, 'pig': 6639, 'sharing': 7986, 'sexually': 7952, 'sleeping': 8197, 'corpse': 2109, 'mercifully': 5683, 'hinted': 4305, 'premiered': 6845, 'cannes': 1390, 'limit': 5272, 'exploited': 3280, 'triumph': 9251, 'substance': 8650, 'accompanied': 200, 'surrealism': 8751, 'anywhere': 550, 'terribly': 8925, 'pushing': 7045, 'shame': 7974, 'survivors': 8764, 'gothic': 3965, 'atmosphere': 703, 'academy': 184, 'lampoon': 5099, 'painfully': 6402, 'remained': 7327, 'execution': 3232, 'sorely': 8316, 'lacking': 5086, 'aspect': 666, 'spending': 8373, 'misfire': 5780, 'persons': 6574, 'birth': 1018, 'queens': 7065, 'brooklyn': 1248, 'beach': 882, 'village': 9552, 'caricatures': 1435, 'humorous': 4433, 'razzie': 7168, 'delight': 2451, 'altered': 424, 'pans': 6431, 'coincidence': 1809, '1940s': 31, 'glowing': 3921, 'angels': 488, 'competition': 1909, 'silence': 8103, 'placed': 6662, 'alfred': 388, 'striking': 8589, 'mixing': 5807, 'schemes': 7764, 'mere': 5686, 'logical': 5338, 'outcome': 6335, 'imaginary': 4511, 'clues': 1785, 'pointing': 6719, 'directions': 2636, 'ought': 6330, 'lawyer': 5155, 'broadcast': 1239, '1945': 36, 'reeves': 7255, 'exhibit': 3236, 'embarrassment': 3013, 'produces': 6919, 'blues': 1083, 'america': 448, 'mouth': 5907, 'nod': 6104, 'heads': 4212, 'incomprehensible': 4581, 'valuable': 9470, 'realises': 7189, 'indian': 4594, 'understands': 9350, 'unable': 9319, 'niven': 6098, 'acquire': 225, 'grabbed': 3972, 'teddy': 8892, 'superman': 8722, 'mighty': 5727, 'rambo': 7118, 'matrix': 5588, 'jackie': 4818, 'chan': 1544, 'jet': 4868, 'li': 5235, 'pointless': 6720, 'lethal': 5225, 'mask': 5562, 'martial': 5549, 'arts': 649, 'supreme': 8737, 'lose': 5368, 'amazingly': 439, 'choreographed': 1656, 'marvel': 5555, 'kick': 4998, 'department': 2499, 'flock': 3579, 'danes': 2330, 'synopsis': 8816, 'posted': 6793, 'online': 6269, 'trite': 9250, 'nauseating': 6012, 'wishes': 9842, 'castle': 1473, 'sky': 8177, 'miyazaki': 5809, 'magical': 5455, 'avoided': 766, 'costs': 2122, 'translation': 9196, 'viewed': 9540, 'enthusiasts': 3106, 'varied': 9485, 'keen': 4973, 'steaming': 8500, 'rousing': 7611, 'sir': 8142, 'risk': 7519, 'penny': 6537, 'association': 684, 'christian': 1665, 'slater': 8188, 'admits': 277, 'signed': 8098, 'pity': 6657, 'hapless': 4141, 'stumbles': 8624, 'indulgence': 4607, 'animals': 498, 'lavish': 5150, 'circumstance': 1695, 'walt': 9637, 'identical': 4474, 'authority': 755, 'atlantis': 702, 'whacked': 9754, 'till': 9056, 'absolute': 171, 'hammy': 4120, 'deliberate': 2446, 'stealing': 8496, 'stopped': 8551, 'muted': 5961, 'pleased': 6695, 'media': 5640, 'worthy': 9906, 'oliver': 6255, 'stone': 8545, 'born': 1138, 'machine': 5436, 'majority': 5471, 'larger': 5118, 'christ': 1663, 'overwhelming': 6373, 'produce': 6915, 'antonio': 534, 'eerie': 2953, 'chiller': 1633, 'vibe': 9524, 'journalist': 4910, 'interview': 4732, 'visiting': 9581, 'poe': 6711, 'bets': 981, 'spend': 8372, 'accepting': 191, 'locked': 5334, 'crypt': 2258, 'unbearable': 9324, 'steele': 8503, 'sinister': 8137, 'captivating': 1414, 'smell': 8233, 'cinematographic': 1690, 'texture': 8945, 'plastic': 6678, 'perspective': 6575, 'notion': 6151, 'grandmother': 3991, 'cooking': 2084, 'authentic': 751, 'bottom': 1151, 'description': 2528, 'cbs': 1497, 'versatile': 9513, 'guardian': 4061, 'kathleen': 4964, 'divorced': 2724, 'nurse': 6176, 'hospital': 4394, 'er': 3128, 'maintains': 5468, 'shut': 8077, '000': 1, 'briefly': 1223, 'lifted': 5250, 'spots': 8413, 'noah': 6100, 'bravery': 1190, 'performed': 6552, 'firefighter': 3519, 'hank': 4136, 'russ': 7644, 'hasn': 4182, 'quietly': 7075, 'slip': 8213, 'explanation': 3272, '50': 128, 'claus': 1727, 'suit': 8693, 'floating': 3578, 'pops': 6754, 'tie': 9048, 'com': 1842, 'ireland': 4775, 'ancient': 473, 'practices': 6815, 'repeatedly': 7365, 'dangers': 2334, 'path': 6489, 'irish': 4778, 'courtesy': 2146, 'cannibals': 1392, 'bean': 883, 'clan': 1711, 'settled': 7936, 'automatically': 760, 'tons': 9113, 'breed': 1208, 'ginger': 3886, 'lynn': 5429, 'marvellous': 5556, 'brutal': 1261, 'slaughter': 8189, 'canvas': 1397, 'enhanced': 3075, 'hottie': 4401, 'dragged': 2787, 'spit': 8390, 'downhill': 2777, 'somethings': 8294, 'begging': 919, 'cannibal': 1391, 'subjected': 8642, 'fair': 3342, 'form': 3650, 'murderous': 5940, 'gary': 3810, 'simon': 8115, 'conventions': 2065, 'knife': 5041, 'shower': 8069, 'gillian': 3883, 'leigh': 5198, 'improve': 4552, 'rapidly': 7144, 'flesh': 3566, 'intestines': 4735, 'boxes': 1164, 'mutant': 5957, 'jenna': 4855, 'jameson': 4829, 'breast': 1200, 'decapitated': 2399, 'wire': 9836, 'taylor': 8871, 'hayes': 4202, 'naked': 5984, 'worthwhile': 9905, 'earns': 2912, 'resulted': 7430, 'cursed': 2282, 'intact': 4695, 'concerned': 1950, 'sellers': 7873, 'embarrass': 3009, 'pink': 6646, 'producing': 6920, 'excuse': 3229, 'releasing': 7310, 'rendition': 7355, 'myth': 5975, 'bust': 1325, 'savage': 7728, 'trust': 9265, 'estranged': 3156, 'tourists': 9147, 'chose': 1660, 'reflect': 7262, 'murky': 5943, 'mood': 5859, 'obtain': 6202, 'aesthetic': 304, 'marilyn': 5523, 'miller': 5739, 'tcm': 8872, 'intrigued': 4741, '20s': 103, 'dancing': 2327, 'ruby': 7622, 'hepburn': 4258, 'grown': 4050, 'bible': 993, 'updated': 9432, 'truthful': 9268, 'chip': 1638, 'grain': 3984, 'rice': 7481, 'runner': 7637, 'beast': 889, 'spoken': 8402, 'drives': 2832, 'truck': 9261, 'fell': 3434, 'sign': 8095, 'steam': 8499, 'suspense': 8771, 'favourites': 3408, 'outdated': 6336, 'flaw': 3556, 'discover': 2665, 'relation': 7297, 'visuals': 9587, 'balance': 820, 'remake': 7330, 'pg': 6593, 'effectively': 2956, 'prom': 6951, 'numbing': 6171, 'aforementioned': 317, 'inept': 4611, 'targeted': 8855, 'brave': 1188, 'andy': 481, 'goldsworthy': 3941, 'water': 9690, 'proportion': 6972, 'gently': 3847, 'rivers': 7529, 'joins': 4894, 'concert': 1953, 'flowing': 3590, 'hides': 4282, 'sight': 8093, 'award': 773, 'slice': 8205, 'ashley': 656, 'judd': 4916, 'sisters': 8146, 'establishing': 3152, 'friendships': 3723, 'jury': 4941, 'prize': 6905, 'sundance': 8706, 'nobody': 6103, 'newman': 6070, 'bugs': 1284, 'paradise': 6438, 'florida': 3586, 'boil': 1100, 'bridges': 1220, 'dean': 2385, 'sand': 7696, 'quotes': 7084, 'necessity': 6026, 'fuss': 3766, 'riot': 7509, 'neighborhood': 6040, 'upper': 9435, 'spoil': 8396, 'whites': 9779, 'blacks': 1034, 'community': 1889, 'rosenstrasse': 7601, 'failed': 3336, 'native': 6005, 'dvds': 2887, 'flash': 3547, 'backs': 804, 'switches': 8798, 'sitcoms': 8149, 'aired': 359, 'decade': 2397, 'afterwards': 326, 'evans': 3171, 'encourage': 3044, 'aspirations': 668, 'chances': 1546, 'strict': 8585, 'dare': 2342, 'thelma': 8964, 'contrast': 2047, 'regards': 7276, 'attitudes': 728, 'lively': 5312, 'aspiring': 669, 'goofy': 3954, 'wear': 9715, 'multi': 5927, 'infectious': 4620, 'arnold': 624, 'jackson': 4821, 'bout': 1158, 'willis': 9814, 'dreams': 2811, 'hopes': 4376, 'verbal': 9506, 'appearances': 570, 'debbie': 2392, 'coleman': 1814, 'characterisation': 1562, 'aimed': 353, 'mainstream': 5465, 'associate': 682, 'afraid': 318, 'address': 262, 'themes': 8968, 'jump': 4932, 'shark': 7987, 'freak': 3700, 'quit': 7081, 'suffered': 8681, 'sitcom': 8148, 'stunt': 8628, 'satisfied': 7723, 'listen': 5298, 'biased': 992, 'departure': 2500, 'pointed': 6718, 'graphic': 3997, 'horse': 4392, 'aunt': 742, 'traveled': 9210, 'france': 3686, 'rocks': 7556, 'legends': 5193, 'area': 602, 'ladies': 5091, 'bride': 1217, 'sleep': 8196, 'featured': 3419, 'bed': 907, 'abrupt': 167, 'build': 1285, 'fitting': 3536, 'hat': 4183, 'service': 7925, 'gotta': 3966, 'soo': 8304, 'alcoholic': 380, 'jurassic': 4940, 'documentaries': 2732, 'handful': 4124, 'recognizable': 7226, 'fortunately': 3665, 'increased': 4585, 'commitment': 1878, 'shakespeare': 7968, 'bars': 850, 'kentucky': 4989, 'inmates': 4651, 'shakespearean': 7969, 'selected': 7867, 'exposed': 3291, 'convict': 2073, 'beings': 933, 'forgiveness': 3647, 'relevance': 7313, 'parallels': 6441, 'hoped': 4372, 'revelation': 7454, 'creatures': 2194, 'laurel': 5146, 'babysitter': 794, 'cole': 1813, 'continuously': 2044, 'visits': 9584, 'grave': 4004, 'conveniently': 2061, 'cemetery': 1513, 'thin': 8988, 'padding': 6396, '85': 143, 'board': 1088, 'rhyme': 7477, 'forget': 3640, 'skip': 8171, 'corner': 2103, 'contained': 2023, 'believable': 938, 'boot': 1127, 'warming': 9660, 'stewart': 8523, 'clara': 1712, 'novak': 6154, 'arrives': 635, 'matuschek': 5597, 'nine': 6092, 'clash': 1717, 'cigarette': 1681, 'opened': 6273, 'ludicrous': 5408, 'bickering': 995, 'six': 8156, 'souls': 8324, 'minds': 5747, 'letters': 5228, 'expertly': 3266, 'fleshed': 3567, 'hugo': 4422, 'felix': 3433, 'possibility': 6789, 'smarmy': 8228, 'pimp': 6643, 'gloriously': 3916, 'ambitious': 447, 'position': 6781, 'clerk': 1737, 'dear': 2387, 'promotion': 6960, 'charles': 1574, 'snow': 8256, 'hungarian': 4438, 'winter': 9832, 'boyish': 1170, 'waits': 9621, 'proving': 6995, 'controlled': 2055, 'insults': 4693, 'wont': 9876, 'underneath': 9344, 'vivid': 9591, 'jealous': 4847, 'nervous': 6055, 'breakdown': 1195, 'meek': 5647, 'lubitsch': 5400, 'hung': 4437, 'ernst': 3135, 'proud': 6986, 'creation': 2187, 'names': 5988, 'register': 7279, 'therein': 8981, 'expense': 3255, 'dreamy': 2812, 'mail': 5462, 'merits': 5690, 'harm': 4165, 'impeccable': 4531, 'evening': 3175, 'intended': 4705, 'moral': 5864, 'counts': 2136, 'involving': 4768, 'refreshing': 7266, '1970': 56, 'hunting': 4446, 'bigfoot': 998, 'pacific': 6387, 'stereotype': 8513, 'narration': 5992, 'camcorder': 1364, 'camping': 1375, 'riding': 7498, 'attack': 711, 'sasquatch': 7713, 'fire': 3517, 'rooting': 7594, 'drops': 2837, 'johnson': 4890, 'physical': 6621, 'monkeys': 5844, 'pen': 6532, 'vile': 9550, 'veteran': 9520, 'atrocity': 708, 'sells': 7875, 'clip': 1759, 'rap': 7139, 'conscious': 1995, 'snoop': 8255, 'vanilla': 9479, 'hammer': 4118, 'rival': 7525, 'promote': 6957, 'leader': 5164, 'committee': 1881, 'hbo': 4206, 'butt': 1333, 'drugs': 2844, 'breaks': 1198, 'finishing': 3513, 'fade': 3332, 'drags': 2791, 'reduced': 7249, 'specific': 8357, 'rant': 7136, 'spot': 8411, 'sized': 8160, 'contrasting': 2049, 'setup': 7937, 'caricature': 1434, 'phase': 6596, 'guns': 4082, 'photographer': 6614, 'switching': 8799, 'targets': 8856, 'similarities': 8111, 'ignore': 4489, 'hop': 4370, 'exist': 3238, 'nerds': 6051, 'natives': 6006, 'ny': 6181, 'lived': 5311, 'sf': 7955, 'dramatized': 2798, 'dressed': 2816, 'ie': 4485, 'warriors': 9671, 'jersey': 4862, 'wearing': 9716, 'giants': 3873, 'sold': 8275, 'bowling': 1161, 'asian': 658, 'colors': 1837, 'africa': 319, 'ming': 5751, 'further': 3763, 'proclaimed': 6914, 'coast': 1793, 'puerto': 7014, 'hood': 4364, 'vs': 9612, 'hyde': 4456, 'likes': 5265, 'glasses': 3904, 'brown': 1256, 'fez': 3455, 'pervert': 6582, 'laid': 5093, 'playboy': 6684, 'girlfriend': 3890, 'eric': 3130, 'grumpy': 4055, 'donna': 2755, 'hot': 4399, 'hmm': 4327, 'basement': 855, 'insipid': 4669, 'mini': 5752, 'mcdonald': 5615, 'exercise': 3235, 'discussing': 2672, 'officers': 6238, 'arab': 596, 'tribe': 9234, 'opera': 6278, 'lists': 5302, 'rushed': 7643, 'insult': 4690, 'woody': 9881, 'writes': 9927, 'vain': 9465, 'stereotypical': 8516, 'countries': 2133, 'offbeat': 6226, 'acclaimed': 199, 'akira': 366, 'kurosawa': 5073, 'ka': 4949, 'den': 2481, 'formed': 3653, 'knights': 5044, 'arguably': 605, 'abstract': 175, '1971': 58, 'delivering': 2459, 'dramas': 2795, 'absorbing': 174, 'cohesive': 1808, 'thankfully': 8951, 'damaged': 2313, 'branch': 1183, 'learn': 5173, 'shy': 8078, 'rapes': 7142, 'facial': 3323, 'putting': 7048, 'unintentionally': 9387, 'sake': 7676, 'salesman': 7680, 'bike': 1001, 'connection': 1985, 'erotic': 3136, 'apocalyptic': 559, 'streets': 8576, 'concerns': 1952, 'tragic': 9173, 'scope': 7780, 'hollow': 4341, 'sits': 8152, 'ripping': 7514, 'cloth': 1776, 'painter': 6406, 'alert': 383, 'visions': 9578, 'amid': 451, 'lights': 5258, 'designs': 2541, 'scheme': 7763, 'paintings': 6408, 'lush': 5424, 'vibrant': 9525, 'tricky': 9239, 'edged': 2938, 'sword': 8800, 'ran': 7123, 'nonetheless': 6116, 'beard': 886, 'holds': 4336, 'truths': 9269, 'condition': 1959, 'string': 8591, 'presents': 6859, 'crossed': 2236, 'israeli': 4800, 'palestinian': 6420, 'effectiveness': 2957, 'ethnic': 3162, 'groups': 4047, 'secondary': 7834, 'openly': 6276, 'visited': 9580, 'kiss': 5032, 'wash': 9675, 'rejected': 7290, 'complexity': 1923, 'mutual': 5962, 'intelligently': 4703, 'mandy': 5496, 'mitch': 5802, 'matt': 5589, 'relaxing': 7306, 'practical': 6812, 'screams': 7794, 'cassavetes': 1468, 'jenny': 4857, 'performs': 6556, 'treats': 9222, 'horrific': 4387, 'museum': 5947, 'denise': 2485, 'laura': 5145, 'reports': 7379, 'suggests': 8691, 'occurred': 6213, 'occur': 6212, 'nightmares': 6088, 'digging': 2618, 'towns': 9154, 'creature': 2193, 'entity': 3111, 'russell': 7645, 'plods': 6702, 'wise': 9838, 'static': 8484, 'occasions': 6208, 'rubbish': 7621, 'excellence': 3209, 'leaves': 5181, 'overwhelmed': 6372, 'tire': 9072, 'beliefs': 936, 'demise': 2471, 'pegg': 6530, 'magazine': 5451, 'celebrities': 1507, 'celebrity': 1508, 'toby': 9084, 'britain': 1234, 'imaginable': 4510, 'closed': 1768, 'bullets': 1293, 'editor': 2946, 'spectacularly': 8361, 'sharp': 7990, 'active': 233, 'positively': 6783, 'nails': 5982, 'goof': 3952, 'immediate': 4522, 'acceptance': 189, 'indifference': 4600, 'peculiar': 6525, 'offensive': 6230, 'beat': 890, 'join': 4891, 'alison': 396, 'olsen': 6259, 'kirsten': 5031, 'dunst': 2875, 'appalled': 561, 'arrogance': 637, 'sophie': 8309, 'megan': 5653, 'stardom': 8461, 'superficial': 8717, 'lust': 5425, 'stunningly': 8627, 'britney': 1236, 'believability': 937, 'alienate': 393, 'satisfactory': 7722, 'danny': 2339, 'huston': 4454, 'pays': 6513, 'homage': 4347, 'drinks': 2826, 'equivalent': 3127, 'kitchen': 5034, 'unsure': 9419, 'surrounding': 8756, 'fat': 3393, 'rising': 7518, 'blows': 1081, 'conceived': 1942, 'terror': 8930, 'offense': 6229, 'draw': 2800, 'turd': 9278, 'masterpieces': 5577, 'annie': 510, 'interiors': 4724, 'hannah': 4139, 'crimes': 2208, 'wives': 9858, 'efforts': 2964, 'crooks': 2232, 'abysmal': 183, 'plotted': 6705, 'bare': 840, 'scarlett': 7755, 'hugh': 4420, 'jackman': 4819, 'miles': 5734, 'judging': 4922, 'sentences': 7896, 'hints': 4306, 'cheating': 1594, 'swearing': 8784, 'mira': 5766, 'sorvino': 8321, 'starters': 8474, 'internet': 4727, 'witnessed': 9853, 'glance': 3901, 'spiritual': 8389, 'preserved': 6860, 'design': 2538, 'resembles': 7399, 'cow': 2156, 'chicken': 1623, 'segment': 7863, 'minded': 5745, 'fort': 3661, 'grounds': 4045, 'connections': 1986, 'tear': 8882, 'mirrors': 5773, 'pacino': 6389, 'speech': 8362, 'coffin': 1804, 'remarkable': 7333, 'dialogues': 2592, 'scripts': 7809, 'interestingly': 4721, 'oriented': 6308, 'fabulous': 3319, 'sirk': 8143, 'filmmaking': 3493, 'hudson': 4416, 'dorothy': 2765, 'malone': 5483, 'stack': 8432, 'lauren': 5147, 'bacall': 795, 'brilliantly': 1228, 'sharon': 7989, 'guru': 4083, 'instinct': 4686, 'biting': 1025, 'trashy': 9205, 'dazzling': 2374, 'smooth': 8241, 'montage': 5851, 'unforgettable': 9372, 'scratching': 7790, 'censors': 1515, 'regarded': 7273, 'chore': 1655, 'greatly': 4013, 'creations': 2188, 'craft': 2166, 'apprentice': 583, 'difficulties': 2614, 'tricks': 9238, 'madness': 5446, 'nazi': 6014, 'fewer': 3454, 'caught': 1489, 'screening': 7797, 'develops': 2579, 'danger': 2331, 'gems': 3827, 'vicious': 9527, 'feeding': 3425, 'stalking': 8446, 'epidemic': 3120, 'virus': 9572, 'newspapers': 6073, 'stations': 8487, 'eager': 2899, 'reporter': 7378, 'morris': 5882, 'cameraman': 1369, 'aid': 347, 'patrick': 6497, 'cohen': 1805, 'doom': 2759, 'atrocious': 706, 'hungry': 4440, 'comical': 1862, 'appearing': 572, 'brenda': 1210, 'japanese': 4837, 'japan': 4836, 'obstacles': 6201, 'prejudices': 6842, 'contempt': 2029, 'ww2': 9937, 'marry': 5544, 'buttons': 1336, 'subplot': 8646, 'prolonged': 6950, 'snipes': 8252, 'pointlessly': 6721, 'ups': 9436, 'belief': 935, 'addition': 259, 'cia': 1680, 'brits': 1237, 'gimmick': 3884, 'meat': 5636, 'bone': 1112, 'ol': 6250, 'pack': 6390, 'nowadays': 6160, 'goals': 3925, 'suspend': 8770, 'disbelief': 2660, 'mummy': 5930, 'per': 6541, 'subtlety': 8658, 'flipping': 3576, 'channels': 1554, 'paced': 6386, 'credibility': 2195, 'uneasy': 9359, 'mediocrity': 5645, 'distance': 2697, 'fright': 3724, 'visible': 9575, 'haunting': 4193, 'tops': 9126, 'hardened': 4154, 'thoughts': 9010, 'ghosts': 3869, 'crowd': 2242, 'mall': 5482, 'glaring': 3902, 'wraps': 9915, 'neck': 6027, 'closest': 1771, '40': 124, 'quest': 7067, 'qualifies': 7056, 'warnings': 9666, 'ignores': 4491, 'kings': 5026, 'shining': 8022, 'kills': 5016, 'unsuspecting': 9420, 'acclaim': 198, 'reflection': 7264, 'carlito': 1440, 'citizen': 1699, 'kane': 4954, '1941': 32, 'executives': 3234, 'orson': 6319, 'welles': 9736, 'innovative': 4655, 'unconventional': 9333, 'shanghai': 7978, 'choppy': 1653, 'conventional': 2064, 'harry': 4173, 'stood': 8548, 'hindsight': 4302, 'techniques': 8889, 'beside': 974, 'greatest': 4012, 'performer': 6553, 'intelligence': 4701, 'rita': 7521, 'hayworth': 4204, 'limits': 5275, 'deception': 2404, 'crippled': 2215, 'hubby': 4415, 'everett': 3181, 'sloane': 8215, 'hara': 4150, 'spinning': 8384, 'viewings': 9544, 'defending': 2428, 'quirky': 7080, 'reportedly': 7377, 'court': 2145, 'closeups': 1773, 'ordered': 6300, 'sung': 8708, 'process': 6913, 'painting': 6407, 'afi': 316, 'collective': 1825, 'pictures': 6633, 'intro': 4743, 'astonished': 693, 'deed': 2417, 'remorse': 7346, 'downfall': 2776, 'send': 7880, 'everybody': 3184, 'approximately': 592, 'shattering': 7992, 'glass': 3903, 'photographed': 6613, 'lackluster': 5087, 'absence': 169, 'frustrating': 3736, 'discussion': 2673, 'invasion': 4749, 'gina': 3885, 'driving': 2833, 'building': 1286, 'confusion': 1981, 'causes': 1492, 'uncanny': 9327, 'flashing': 3551, 'suffer': 8680, 'conspiracy': 2012, 'curiosity': 2274, 'package': 6391, 'lynch': 5428, 'kubrick': 5069, 'alternate': 425, 'purely': 7034, 'adds': 264, 'incompetent': 4580, 'suitable': 8694, 'manic': 5500, 'seed': 7849, 'effortlessly': 2963, 'tip': 9070, 'electric': 2982, 'chair': 1534, 'miraculously': 5770, 'survives': 8761, 'buried': 1305, 'gruesome': 4054, 'soviet': 8336, 'union': 9389, 'teach': 8874, 'spies': 8379, 'spice': 8376, 'campaign': 1373, 'resolved': 7408, 'nbc': 6016, 'overlooked': 6363, 'homicide': 4354, 'tapes': 8851, 'reruns': 7393, 'friday': 3717, 'al': 368, 'existed': 3239, 'unit': 9391, 'bears': 888, 'resemblance': 7397, 'deliverance': 2457, 'careless': 1429, 'mayor': 5607, 'poses': 6777, '1968': 54, '1969': 55, 'achieves': 219, '1944': 35, '45': 126, 'preaching': 6824, 'complicated': 1924, 'partly': 6468, 'entertain': 3097, 'thirty': 8999, 'ryan': 7654, 'realistically': 7193, 'vomit': 9601, '95': 146, 'bonus': 1116, 'downbeat': 2774, 'provoking': 6997, 'serial': 7913, 'willem': 9808, 'dafoe': 2304, 'track': 9162, 'renaissance': 7351, 'solved': 8285, 'junior': 4938, 'deborah': 2393, 'neighbor': 6039, 'transition': 9192, 'ease': 2915, 'monologue': 5846, 'san': 7695, 'queen': 7064, 'referring': 7260, 'talents': 8837, 'hide': 4280, 'georgia': 3853, 'raunchy': 7160, 'hazzard': 4205, 'california': 1358, 'somewhere': 8298, 'accompanying': 202, '2005': 98, 'hunky': 4441, 'cousins': 2150, 'knoxville': 5055, 'bo': 1087, 'luke': 5412, 'duke': 2865, 'riders': 7494, 'jessica': 4865, 'simpson': 8121, 'daisy': 2309, 'skimpy': 8167, 'bikini': 1003, 'topless': 9125, 'county': 2137, 'strip': 8593, 'mine': 5749, '27': 113, 'jules': 4926, 'narrated': 5991, 'heartbreaking': 4221, '12': 7, 'touched': 9141, 'expanded': 3247, 'everyday': 3185, 'composed': 1927, 'admiration': 271, 'cheesiness': 1605, 'mile': 5733, 'lois': 5339, 'powered': 6808, 'lex': 5234, 'henchman': 4254, 'fragile': 3681, 'lifts': 5251, 'continent': 2036, 'feet': 3431, 'weakness': 9709, 'associated': 683, 'projects': 6948, 'dracula': 2785, 'stake': 8441, 'brush': 1260, 'burning': 1309, 'ground': 4043, 'goers': 3932, 'symbolism': 8809, 'savior': 7734, 'scientist': 7775, 'threw': 9020, 'rocket': 7554, 'explode': 3274, 'allegory': 403, 'radioactive': 7099, 'furthermore': 3764, 'luthor': 5426, 'stabs': 8431, 'slam': 8181, 'apt': 594, 'comics': 1863, 'wreck': 9917, 'wacky': 9615, 'slightest': 8209, 'loyalty': 5398, 'batman': 871, '1960s': 48, 'entitled': 3110, 'sincerely': 8128, 'bryan': 1264, 'billion': 1008, 'bend': 955, 'transported': 9200, 'dignity': 2620, 'australia': 747, 'watts': 9696, 'lover': 5387, 'aussie': 744, 'chamberlain': 1541, 'thousands': 9012, 'prophecy': 6970, 'enhance': 3074, 'charlie': 1575, 'owl': 6378, 'disappoint': 2652, 'visually': 9586, 'student': 8612, 'anna': 508, 'keaton': 4972, 'daniels': 2337, 'judgement': 4920, 'detailed': 2563, 'delicate': 2448, 'partition': 6467, 'attract': 730, 'plight': 6700, 'ridden': 7491, 'ceremony': 1526, 'goldie': 3940, 'lens': 5207, 'lemmon': 5200, 'sandy': 7700, 'fulfill': 3742, 'homes': 4351, 'potter': 6801, 'lightweight': 5259, '1948': 38, 'captures': 1417, 'expert': 3264, 'cary': 1461, 'myrna': 5966, 'loy': 5396, 'melvyn': 5664, 'odds': 6222, 'timeless': 9061, 'blandings': 1044, 'achieving': 220, 'remade': 7324, 'hanks': 4137, '1986': 74, 'pit': 6651, 'cube': 2262, 'programming': 6937, 'explored': 3284, 'muriel': 5942, 'daughters': 2362, 'bath': 867, 'connecticut': 1984, 'estate': 3154, 'attorney': 729, 'foundation': 3675, 'sparks': 8349, 'flare': 3546, 'ignorance': 4487, 'delivery': 2461, 'farce': 3373, 'originally': 6312, 'irene': 4776, 'dunne': 2874, 'funnier': 3756, 'blend': 1054, 'palette': 6421, 'foil': 3606, 'shannon': 7979, 'assistant': 681, 'lovable': 5383, 'maid': 5461, 'pairing': 6412, 'drake': 2793, 'tomorrow': 9105, 'futuristic': 3768, 'trailers': 9176, 'extras': 3308, 'dutch': 2882, 'widow': 9797, 'spider': 8377, 'prey': 6882, 'web': 9721, 'gerard': 3854, 'reve': 7449, 'centered': 1518, 'morbid': 5869, 'invited': 4762, 'guest': 4066, 'glimpses': 3910, 'insanity': 4660, 'flood': 3580, 'accepts': 192, 'wealthy': 9712, 'figured': 3479, 'cg': 1529, 'jude': 4917, 'gwyneth': 4089, 'paltrow': 6425, 'infinitely': 4624, 'racing': 7091, 'indiana': 4595, 'esquire': 3146, 'term': 8920, 'dashing': 2355, 'melting': 5663, 'perkins': 6561, 'nerve': 6053, 'grating': 4002, 'whining': 9774, 'sarcastic': 7711, 'heroine': 4269, 'phantom': 6595, 'swanson': 8782, 'steady': 8494, 'progression': 6942, 'rapid': 7143, 'eventual': 3178, 'reunite': 7447, 'cares': 1431, 'props': 6974, 'dress': 2815, 'entirety': 3109, 'tones': 9109, 'essential': 3148, 'teenager': 8896, 'reported': 7376, 'jaded': 4823, 'mainly': 5464, 'encounters': 3043, 'ape': 555, 'canyon': 1398, 'incident': 4568, 'youthful': 9974, 'granted': 3996, 'incidents': 4571, 'authenticity': 752, 'hairy': 4108, 'expedition': 3254, 'remote': 7347, 'northern': 6132, 'suspected': 8768, 'computer': 1937, 'amusing': 465, 'trip': 9246, 'boredom': 1135, 'performing': 6555, 'parks': 6452, 'mccartney': 5612, 'beatles': 893, 'guaranteed': 4058, 'feat': 3417, 'nicholson': 6078, 'sixties': 8158, 'yesterday': 9958, 'lennon': 5206, 'harrison': 4170, 'cracks': 2165, 'seventies': 7941, 'despise': 2550, 'committed': 1880, 'charity': 1573, 'activities': 234, 'selfish': 7870, 'carradine': 1449, 'sh': 7958, 'mitchum': 5804, 'rider': 7493, 'tiger': 9052, 'traps': 9203, 'ya': 9943, 'watchers': 9687, 'rip': 7510, 'imitate': 4519, 'freaking': 3702, 'bury': 1317, 'grudge': 4053, 'evolve': 3196, 'voyager': 9611, 'gut': 4085, 'enterprise': 3095, 'progress': 6939, 'exploration': 3282, 'trek': 9225, 'subtext': 8653, 'edit': 2941, 'isolated': 4797, 'nostalgic': 6136, 'excitement': 3223, 'distracting': 2706, 'established': 3151, 'block': 1064, 'opposed': 6289, 'universe': 9394, 'landed': 5102, 'societies': 8268, 'interact': 4715, 'newer': 6068, 'promises': 6955, 'conclude': 1954, 'sentiment': 7897, 'arrow': 639, 'archer': 599, 'complain': 1911, 'wes': 9748, 'craven': 2177, 'benefit': 957, 'paint': 6404, 'drain': 2792, 'artsy': 650, 'vampire': 9474, 'troma': 9255, 'protagonist': 6978, 'unintentional': 9386, 'sergio': 7912, 'bargain': 842, 'instances': 4682, 'random': 7127, 'loud': 5379, 'gallery': 3784, 'stretch': 8581, 'alternative': 427, '1972': 59, 'tower': 9151, 'describes': 2526, 'centuries': 1523, 'invented': 4751, 'wheel': 9760, 'missile': 5790, 'bow': 1159, 'biblical': 994, 'joined': 4892, 'voyage': 9610, 'growing': 4049, 'subtitled': 8654, 'constantly': 2014, 'cliche': 1740, 'respond': 7418, 'palma': 6423, 'artistic': 646, 'dozen': 2781, 'topic': 9123, 'sustain': 8777, 'caine': 1353, 'angie': 490, 'dickinson': 2600, 'nancy': 5989, 'gordon': 3956, 'demonstration': 2480, 'medium': 5646, 'surprises': 8747, 'transcends': 9184, 'variations': 9484, 'popular': 6755, 'festivals': 3449, 'pleasant': 6692, 'page': 6397, 'crude': 2247, 'rose': 7599, 'hardy': 4159, 'leo': 5210, 'brand': 1184, 'product': 6921, 'placement': 6663, 'rosemary': 7600, 'hawk': 4198, 'dealt': 2384, 'mentions': 5681, 'jewish': 4873, 'barrel': 847, 'perceive': 6542, 'balanced': 821, 'university': 9395, 'broad': 1238, 'sympathize': 8812, 'joshua': 4909, 'shed': 7998, 'wee': 9724, 'stale': 8443, 'lying': 5427, 'cab': 1345, 'complaining': 1913, 'antichrist': 529, 'cries': 2206, 'nuts': 6178, 'newcomer': 6067, 'brink': 1232, 'doors': 2762, 'overrated': 6365, 'countless': 2132, 'offs': 6242, 'mud': 5925, 'whiny': 9775, 'losers': 5370, 'robots': 7550, 'aliens': 394, 'bleed': 1053, 'insane': 4658, 'pilots': 6642, 'obsession': 6198, 'robot': 7548, 'affects': 312, 'allow': 408, 'participate': 6462, 'propaganda': 6966, 'highlighted': 4288, 'endearing': 3048, 'football': 3625, 'teams': 8881, 'superbly': 8716, 'neat': 6022, 'learned': 5174, 'speeding': 8366, 'hill': 4295, 'injury': 4649, 'stripper': 8595, 'crummy': 2252, 'useless': 9450, 'ha': 4093, 'excruciating': 3227, 'drove': 2839, 'parking': 6451, 'vince': 9556, 'vaughn': 9493, 'travolta': 9216, 'anyways': 549, 'preview': 6878, 'nope': 6121, 'rides': 7495, 'preston': 6866, 'dilemma': 2621, 'ensues': 3090, 'barrymore': 849, 'signs': 8102, 'moves': 5914, 'ignoring': 4492, 'horrified': 4388, 'paste': 6485, 'stilted': 8533, 'inexplicable': 4615, 'attributed': 734, 'pants': 6432, 'boots': 1129, 'unnatural': 9403, 'austin': 746, 'allusions': 412, 'convenient': 2060, 'ambiguous': 444, 'candidate': 1385, 'uma': 9317, 'thurman': 9043, 'disjointed': 2684, 'zone': 9995, 'underlying': 9343, 'troubles': 9260, 'apparent': 563, 'builds': 1288, 'expectation': 3249, 'buscemi': 1320, 'dawson': 2369, 'forgot': 3648, 'difficulty': 2615, 'noted': 6142, 'fairness': 3345, 'hated': 4185, 'patton': 6500, 'tanks': 8847, 'fist': 3533, 'revolver': 7469, 'profanity': 6925, 'superiors': 8721, 'alike': 395, 'gregory': 4024, 'peck': 6522, 'macarthur': 5435, 'accomplishment': 205, 'finger': 3508, 'scored': 7782, 'composer': 1928, 'begs': 923, 'addressing': 263, 'anger': 489, 'inspire': 4677, 'montages': 5852, 'korea': 5059, 'robbins': 7541, 'natured': 6010, 'landing': 5103, 'north': 6130, 'parallel': 6440, 'enlightened': 3084, 'rule': 7630, 'devoted': 2586, 'nicolas': 6081, 'coaster': 1794, 'companion': 1891, 'arguments': 609, 'recapture': 7216, 'pride': 6885, 'concern': 1949, 'listened': 5299, 'flag': 3541, 'truman': 9264, 'resemble': 7398, 'firing': 3523, 'defining': 2434, 'bore': 1133, 'surrender': 8752, 'awaiting': 769, 'caesar': 1348, 'shakes': 7967, 'clown': 1780, 'tape': 8849, 'nights': 6090, 'alexandre': 387, 'bum': 1297, 'previously': 6881, 'dumped': 2872, 'planned': 6673, 'veronika': 9511, 'sordid': 8314, 'revealed': 7451, 'et': 3157, 'eustache': 3169, 'relating': 7296, 'whore': 9787, 'accidentally': 197, 'glued': 3922, 'bucks': 1272, 'zoom': 9997, 'function': 3749, 'duel': 2860, 'laser': 5123, 'barney': 846, 'furry': 3762, 'pseudo': 6999, 'whale': 9755, 'experiment': 3261, 'minimal': 5753, 'discovery': 2669, 'ship': 8024, 'guests': 4067, 'welcomed': 9734, 'humiliation': 4431, 'frat': 3698, 'hats': 4190, 'resistance': 7405, 'creativity': 2190, 'sentence': 7895, 'interpret': 4729, 'pearl': 6521, 'construction': 2018, 'symbolic': 8808, 'wisdom': 9837, 'element': 2986, 'arrive': 633, 'separate': 7901, 'ships': 8025, 'robbie': 7539, 'williams': 9810, 'mouths': 5909, 'studies': 8615, 'ear': 2903, 'destructive': 2560, 'bunuel': 1302, 'nonsense': 6118, 'imagery': 4508, 'chiba': 1620, 'fighter': 3474, 'meaningless': 5628, 'scheming': 7765, 'idiocy': 4479, 'illustrated': 4504, 'wwii': 9941, 'defined': 2432, 'patriotic': 6498, 'preparing': 6851, 'secondly': 7835, 'menace': 5672, 'celebrates': 1504, 'discovering': 2667, 'voting': 9609, 'contrary': 2046, 'genres': 3843, 'shallow': 7973, 'liners': 5283, 'eva': 3170, 'longoria': 5352, 'parker': 6450, 'awesome': 781, 'rainy': 7109, 'method': 5705, 'axe': 788, 'wielding': 9800, 'website': 9722, 'checking': 1597, 'quantum': 7060, 'mechanics': 5639, 'statements': 8482, 'examination': 3204, 'believing': 943, 'creators': 2192, 'vote': 9605, 'maintained': 5467, 'subplots': 8647, 'matched': 5582, 'choreography': 1658, 'behold': 931, 'hundreds': 4436, 'fortunate': 3664, 'childhood': 1629, 'feminine': 3440, 'lester': 5222, 'dubbed': 2851, 'males': 5480, 'drink': 2824, 'stream': 8573, 'sexist': 7949, 'remarks': 7335, 'laced': 5083, 'woo': 9877, 'phillips': 6603, 'wilson': 9815, 'undercover': 9339, 'framed': 3684, 'governor': 3969, 'cyborg': 2294, 'damme': 2315, 'exploding': 3276, 'outs': 6349, '1995': 84, 'advance': 290, 'shared': 7984, 'yelling': 9953, 'tremendous': 9226, 'catherine': 1485, 'hysterical': 4461, 'virgin': 9565, 'iconic': 4466, 'trailer': 9175, 'types': 9304, 'reasonably': 7206, 'grayson': 4009, 'inclusion': 4577, 'lunatic': 5415, 'comparisons': 1899, 'loses': 5371, 'tommy': 9104, 'access': 193, 'contacts': 2021, 'filmography': 3494, 'quentin': 7066, 'marlon': 5538, 'tales': 8838, 'author': 753, 'screenplays': 7799, 'sydney': 8803, 'julia': 4927, 'anderson': 476, 'returning': 7444, 'unsuccessful': 9418, 'burned': 1308, 'reluctant': 7320, 'plug': 6707, 'enthusiastic': 3105, 'buddy': 1276, 'corbin': 2096, 'bernsen': 971, 'spooky': 8406, 'glee': 3905, 'adultery': 288, 'display': 2691, 'flair': 3542, 'cell': 1510, 'phone': 6608, 'prevalent': 6875, 'apply': 579, 'claw': 1729, 'sacrificing': 7661, 'shred': 8074, 'wished': 9841, 'seuss': 7938, 'resurrect': 7434, 'uplifting': 9433, 'dump': 2871, 'skit': 8174, 'superhero': 8719, 'olds': 6254, 'alleged': 400, 'destroyed': 2556, '99': 148, 'bobby': 1093, 'porno': 6760, 'overcome': 6359, 'legendary': 5192, 'hopeless': 4374, 'objective': 6184, 'travis': 9215, 'dictator': 2601, 'uniforms': 9381, 'receives': 7219, 'earnest': 2910, 'command': 1865, 'jarring': 4840, 'cap': 1399, 'armed': 618, 'advised': 302, 'nc': 6017, 'loosely': 5360, 'saga': 7670, 'understandable': 9347, 'section': 7841, 'gunfire': 4079, 'inherent': 4642, 'repulsive': 7387, 'forcing': 3633, 'spoon': 8407, 'prove': 6988, 'corleone': 2100, 'shaw': 7994, 'trivia': 9253, 'homer': 4350, 'watches': 9688, 'december': 2401, '1957': 45, 'letter': 5227, 'von': 9602, 'offering': 6233, 'marshall': 5546, 'satellite': 7718, 'shepard': 8011, 'hopefully': 4373, 'bits': 1026, 'depend': 2501, 'boost': 1126, 'expertise': 3265, 'elderly': 2978, 'scores': 7783, 'sykes': 8804, 'hideous': 4281, 'emmy': 3021, 'promise': 6953, 'unimaginative': 9382, 'identified': 4475, 'scriptwriter': 7810, 'funding': 3752, 'popcorn': 6751, 'chewing': 1619, 'sarne': 7712, 'feminist': 3441, 'resources': 7410, 'disposal': 2695, 'closely': 1769, 'gate': 3813, 'ego': 2966, 'locker': 5335, 'boast': 1089, 'myra': 5965, 'breckinridge': 1207, 'feeds': 3426, 'houses': 4407, 'unfaithful': 9367, 'thats': 8955, 'investigating': 4756, 'blown': 1080, 'bunker': 1300, 'sickening': 8082, 'terrorized': 8934, 'unleashed': 9397, 'article': 643, 'gift': 3876, 'rabbit': 7085, 'favourite': 3407, 'highest': 4286, 'ann': 507, 'innocence': 4653, 'collapses': 1818, 'ambitions': 446, 'confronted': 1975, 'absurdity': 177, 'personalities': 6570, 'wannabe': 9646, 'toy': 9158, 'upside': 9438, 'toys': 9159, 'sync': 8814, 'prime': 6890, 'pirate': 6648, 'glamorous': 3900, 'doll': 2741, 'semblance': 7877, 'knees': 5039, 'faded': 3333, 'paranoid': 6444, 'schizophrenic': 7766, 'greedy': 4017, 'pool': 6747, 'psychedelic': 7001, 'psychotic': 7010, 'looney': 5357, 'throne': 9028, 'capsule': 1410, 'remind': 7340, 'nightmare': 6087, 'somebody': 8289, 'unravel': 9410, 'ordeal': 6298, 'islands': 4795, 'monsters': 5850, 'perform': 6549, 'experiments': 3263, 'championship': 1543, 'uber': 9307, 'hunt': 4442, 'sport': 8408, 'damned': 2317, 'device': 2580, 'hammerhead': 4119, 'belong': 947, 'animator': 502, 'jeffrey': 4854, 'combs': 1850, 'research': 7396, 'sharks': 7988, 'searching': 7822, 'cancer': 1384, 'roughly': 7606, 'facility': 3324, 'forsythe': 3660, 'sailor': 7673, 'bond': 1110, 'enter': 3092, 'chased': 1582, 'rubber': 7620, 'deserted': 2530, 'lesson': 5220, 'mermaid': 5691, 'reverse': 7457, 'ariel': 610, 'melody': 5661, 'tricked': 9237, 'ursula': 9443, 'uninteresting': 9388, 'benson': 963, 'robotic': 7549, 'sebastian': 7830, 'goodbye': 3947, 'earned': 2909, 'plans': 6675, 'ironic': 4780, 'butchered': 1331, 'puppet': 7028, 'coop': 2087, 'referred': 7259, 'sports': 8410, 'diego': 2606, 'saint': 7674, 'louis': 5380, 'classmates': 1724, 'challenged': 1537, 'basketball': 863, 'mate': 5584, 'invent': 4750, 'blackmail': 1033, 'beers': 912, 'conversations': 2067, '19': 17, 'buzz': 1340, 'linda': 5278, 'resist': 7404, 'uncut': 9335, 'hotel': 4400, 'witches': 9847, 'frustrated': 3735, 'virginity': 9567, 'property': 6969, 'ross': 7602, 'sullivan': 8699, 'rick': 7487, 'farnsworth': 3378, 'explaining': 3270, 'owners': 6382, 'storm': 8557, 'volumes': 9600, 'rewarded': 7473, 'lips': 5294, 'burnt': 1311, 'stabbed': 8429, 'possessed': 6785, 'constraints': 2015, 'criticisms': 2225, 'borders': 1132, 'drowned': 2840, 'midst': 5725, 'carpet': 1448, 'elite': 2995, 'armor': 619, 'rodney': 7560, 'molly': 5831, 'uniform': 9379, 'caring': 1436, 'bin': 1011, 'sap': 7705, 'clifford': 1750, 'voodoo': 9604, 'momentum': 5835, 'warren': 9669, 'feeble': 3423, 'bela': 934, 'lugosi': 5409, 'dud': 2856, 'awfulness': 784, 'beating': 892, 'kapoor': 4956, 'locales': 5326, 'drag': 2786, 'elsewhere': 3004, 'netflix': 6058, 'bbc': 880, '1992': 81, 'grainy': 3985, 'jerky': 4860, 'cope': 2090, 'wandering': 9642, 'instantly': 4684, 'chasing': 1584, 'circles': 1694, 'glossy': 3918, 'grandma': 3990, 'specially': 8355, 'trees': 9224, '2001': 94, 'shiny': 8023, 'circle': 1693, 'diner': 2627, 'deranged': 2517, 'principal': 6894, 'civil': 1702, 'ugh': 9308, 'gag': 3777, 'hartman': 4177, 'drunken': 2847, 'kiddie': 5003, 'entering': 3094, 'walk': 9625, 'mama': 5485, 'overs': 6366, 'shea': 7996, 'leopold': 5213, 'sassy': 7714, 'pecker': 6523, 'waters': 9694, 'intention': 4710, 'considerably': 2003, 'productions': 6923, 'obsessed': 6197, 'lili': 5269, 'consistently': 2010, 'educational': 2950, 'stunned': 8625, 'lawrence': 5153, 'ideal': 4471, 'transitions': 9193, 'continuity': 2042, 'inevitably': 4613, 'vengeance': 9503, 'wesley': 9749, 'kidding': 5004, 'oscars': 6321, 'spoiling': 8400, 'selection': 7868, 'thinner': 8994, 'soup': 8330, 'thunderbirds': 9042, 'resume': 7433, 'underwater': 9355, 'core': 2097, 'raised': 7111, 'thirteen': 8997, 'accuracy': 209, 'station': 8486, 'chopped': 1651, 'goodness': 3950, 'league': 5169, 'gentlemen': 3846, 'python': 7053, 'circus': 1697, 'canada': 1380, 'dressing': 2818, 'offend': 6227, 'upset': 9437, 'charms': 1580, 'disturbed': 2714, 'bravo': 1191, 'cheering': 1602, 'tiring': 9075, 'arrogant': 638, 'pompous': 6743, 'handles': 4128, 'squirm': 8425, 'stabbing': 8430, '1996': 85, 'handling': 4129, 'strangely': 8567, 'context': 2035, 'slaves': 8193, '1950s': 41, 'moderately': 5822, 'sketch': 8162, 'corpses': 2110, 'relentlessly': 7312, 'inserted': 4663, 'representation': 7381, 'fifties': 3471, 'stylized': 8637, 'evidently': 3191, 'waving': 9699, 'bearing': 887, '1959': 46, 'superior': 8720, 'investment': 4759, 'helen': 4240, 'golf': 3942, 'haunted': 4192, 'tradition': 9168, 'boris': 1137, 'karloff': 4962, 'frankenstein': 3693, 'sympathy': 8813, 'paranoia': 6443, 'comprehensive': 1933, 'sticking': 8525, 'flimsy': 3573, 'beaver': 899, 'babies': 792, 'violently': 9563, 'tormented': 9129, 'elephant': 2988, 'gorilla': 3959, 'annoyingly': 517, 'covers': 2155, 'instant': 4683, 'timing': 9064, 'everywhere': 3188, 'audition': 739, 'network': 6059, 'executive': 3233, 'routines': 7614, 'phil': 6599, 'lasts': 5128, 'spelled': 8368, 'expressions': 3299, 'jazz': 4845, 'buff': 1279, 'june': 4936, 'elisha': 2994, 'cook': 2082, '1937': 27, 'manipulation': 5502, 'rico': 7489, 'largest': 5119, 'weekly': 9727, 'votes': 9608, 'laputa': 5115, 'ranks': 7134, 'prequel': 6853, 'insights': 4667, 'vader': 9462, 'emperor': 3027, 'lightning': 5257, 'helmet': 4246, 'coherence': 1806, 'yoda': 9962, 'forms': 3656, 'albeit': 375, 'mon': 5836, 'ton': 9106, 'yours': 9971, 'flashy': 3552, 'dave': 2363, 'vague': 9463, 'wtf': 9935, 'traffic': 9171, 'grief': 4030, 'pan': 6427, 'serum': 7919, 'severed': 7944, 'onto': 6271, 'sleazy': 8195, 'igor': 4493, 'closet': 1772, 'screenwriter': 7801, 'arm': 616, 'ripped': 7512, 'epic': 3118, 'roz': 7619, 'accessible': 194, 'motive': 5899, 'zenia': 9984, 'bulk': 1290, 'focusing': 3602, 'zeta': 9987, 'adore': 283, 'threatened': 9016, 'judgment': 4923, 'august': 741, 'lesbian': 5215, 'lingering': 5285, 'coffee': 1803, 'bothered': 1147, 'painted': 6405, 'bitchy': 1022, 'respected': 7413, 'mastermind': 5575, 'pushed': 7043, 'paying': 6510, 'wonderland': 9872, 'cliches': 1742, 'anonymous': 519, 'interrupted': 4731, 'reel': 7252, 'deciding': 2409, 'dj': 2726, 'ramon': 7119, 'subway': 8662, 'trains': 9180, 'climatic': 1753, 'fraud': 3699, 'compete': 1905, 'places': 6664, 'mechanic': 5637, 'deanna': 2386, 'durbin': 2878, '14': 10, 'contract': 2045, '1936': 26, 'paired': 6411, 'competing': 1908, 'smash': 8231, 'aplomb': 557, 'kay': 4969, 'elegant': 2985, 'fierce': 3467, 'warm': 9659, 'luscious': 5423, 'soprano': 8312, 'succeed': 8663, 'pat': 6487, 'energetic': 3061, 'intentions': 4713, 'cheerful': 1601, 'barnes': 845, 'brady': 1178, 'stuart': 8609, 'contrived': 2053, 'manners': 5509, 'bacon': 807, 'guide': 4069, 'election': 2981, 'chairman': 1535, 'candidates': 1386, 'lam': 5095, 'oldest': 6253, 'triad': 9230, 'cheung': 1616, 'corruption': 2117, 'entertainer': 3099, 'hes': 4274, 'safety': 7669, 'ripper': 7513, 'comprised': 1934, 'horny': 4382, 'teens': 8898, 'tree': 9223, 'oprah': 6292, 'perversion': 6581, 'assuming': 689, 'shake': 7966, 'millions': 5742, 'iv': 4812, 'rapture': 7146, 'afford': 314, 'patty': 6501, 'grail': 3983, 'observation': 6193, 'comfort': 1859, 'greed': 4016, 'streak': 8572, 'longest': 5350, 'yard': 9945, 'dimension': 2624, 'puppy': 7030, 'exploit': 3277, 'finished': 3511, 'inaccurate': 4560, 'photos': 6617, 'fictitious': 3462, 'overdone': 6360, 'license': 5241, 'crowded': 2243, 'narrow': 5995, 'romanian': 7577, 'kung': 5072, 'fu': 3739, 'satirical': 7720, 'mold': 5829, 'monkey': 5843, 'funky': 3755, 'cried': 2205, 'realized': 7198, 'modine': 5826, 'guards': 4062, 'skills': 8166, 'disappear': 2647, 'regularly': 7284, 'retrieve': 7439, 'predictability': 6833, 'nerdy': 6052, 'nerd': 6050, 'railroad': 7105, 'worker': 9887, 'confronts': 1977, 'stands': 8457, 'displays': 2694, 'numerous': 6173, 'rage': 7100, 'genie': 3840, 'assassination': 672, 'orders': 6301, 'mercy': 5685, 'rooney': 7592, 'wallach': 9633, 'albert': 376, 'aka': 364, 'rebellion': 7211, 'existing': 3242, 'treated': 9219, 'heavens': 4230, 'punishment': 7026, '00': 0, 'vhs': 9522, 'acknowledge': 223, 'uninspired': 9384, 'audio': 738, 'clothes': 1777, 'helena': 4241, 'bonham': 1114, 'adorable': 282, 'sandra': 7699, 'los': 5367, 'angeles': 485, 'phenomenal': 6597, 'groundbreaking': 4044, 'nina': 6091, 'streisand': 8577, 'influential': 4628, 'sadness': 7666, 'downs': 2779, 'outright': 6348, 'clubs': 1782, 'monk': 5842, 'intimate': 4737, 'deny': 2493, 'email': 3008, 'kicking': 5000, 'embarrassed': 3010, 'resident': 7402, 'yep': 9956, 'seeks': 7854, 'replay': 7372, 'reno': 7357, 'kurt': 5074, 'giggles': 3880, 'confess': 1963, 'afterlife': 322, 'choice': 1641, 'unattractive': 9322, 'germany': 3858, 'hanna': 4138, 'smiling': 8236, 'attic': 726, 'models': 5821, 'gusto': 4084, 'brit': 1233, 'garage': 3799, 'sunshine': 8713, 'masters': 5578, 'matthau': 5593, 'duo': 2876, 'trivial': 9254, 'sincere': 8127, 'tenderness': 8916, 'brazil': 1192, 'portuguese': 6775, 'environmental': 3116, 'progresses': 6941, 'predicted': 6836, 'nevertheless': 6064, 'sooner': 8306, 'assumes': 688, 'accustomed': 213, 'treasure': 9217, 'hidden': 4279, 'locale': 5325, 'threat': 9014, 'frontal': 3731, 'mythology': 5977, 'encourages': 3046, 'ivan': 4813, 'unexplained': 9365, 'refuge': 7267, 'faith': 3348, 'pitched': 6653, 'stalker': 8445, 'traumatized': 9208, 'gym': 4090, 'excited': 3222, 'dynamics': 2895, 'seldom': 7866, 'minority': 5761, 'dysfunctional': 2897, 'organized': 6306, 'obscure': 6191, 'repeating': 7366, 'davies': 2366, 'patricia': 6496, 'corn': 2102, 'quarters': 7062, 'rogers': 7563, 'sheedy': 7999, 'poignant': 6716, 'stays': 8493, 'rank': 7133, 'maugham': 5598, 'decidedly': 2407, 'filmic': 3489, 'consequently': 1999, 'quaint': 7055, 'mclaglen': 5618, 'ira': 4771, 'mob': 5812, 'desperation': 2548, 'foggy': 3605, 'childish': 1630, 'fond': 3615, 'obscurity': 6192, 'sudden': 8677, 'massive': 5571, 'boston': 1143, 'ruins': 7628, 'terry': 8935, 'verge': 9508, 'territory': 8929, 'document': 2731, 'dinosaurs': 2630, 'generations': 3836, 'informative': 4632, 'rush': 7642, 'demanding': 2466, 'absent': 170, 'twilight': 9294, 'unoriginal': 9407, 'frontier': 3732, 'staff': 8434, 'killings': 5015, 'salt': 7684, 'pepper': 6540, 'sums': 8704, 'irrelevant': 4784, 'banned': 835, 'daft': 2305, 'weapon': 9713, 'shrek': 8075, '3d': 122, 'bug': 1283, 'iq': 4770, 'im': 4506, 'gonna': 3944, 'recipe': 7223, 'joking': 4899, 'likeable': 5262, 'pathos': 6491, 'cookie': 2083, 'cutter': 2292, 'mock': 5815, 'michelle': 5717, 'rodriguez': 7561, 'mtv': 5923, 'easier': 2916, 'deceased': 2400, '13th': 9, 'morgue': 5875, 'popped': 6752, 'jacket': 4817, 'screaming': 7793, 'oddity': 6220, 'trance': 9183, 'frame': 3683, 'lean': 5170, 'knack': 5038, 'affect': 307, 'lou': 5378, 'martha': 5548, 'christianity': 1666, '700': 137, 'reliable': 7315, 'abc': 153, 'pbs': 6515, 'programs': 6938, 'operation': 6282, 'blessing': 1058, 'medical': 5641, 'poverty': 6804, 'stricken': 8584, 'communities': 1888, 'reaching': 7174, 'seduce': 7845, 'hilton': 4298, 'stoned': 8546, 'tea': 8873, 'hers': 4272, 'bull': 1291, 'incapable': 4564, 'raising': 7113, 'bros': 1250, '1946': 37, 'mature': 5595, 'brains': 1181, 'bothering': 1148, 'kalifornia': 4952, 'snatch': 8248, 'photographs': 6615, 'ravishing': 7163, 'walls': 9634, 'express': 3294, 'fart': 3381, 'attached': 709, 'fish': 3529, 'frost': 3733, 'wright': 9922, 'consequences': 1998, 'rom': 7573, 'ted': 8891, 'bogus': 1099, 'entertains': 3102, 'geisha': 3825, 'samurai': 7694, 'surroundings': 8757, 'dances': 2326, 'screw': 7803, 'sibling': 8079, 'rivalry': 7526, 'startling': 8476, 'aids': 349, 'irresponsible': 4786, 'responsibility': 7421, 'addiction': 257, 'tender': 8915, 'competent': 1906, 'innuendo': 4656, 'crisis': 2216, 'sob': 8262, 'ably': 158, 'establish': 3150, 'melissa': 5658, 'owned': 6380, 'mountain': 5903, 'mars': 5545, 'alright': 421, 'shine': 8020, 'duration': 2877, 'revolves': 7470, 'cheaply': 1591, 'neurotic': 6060, 'gloria': 3914, 'greats': 4015, 'downey': 2775, 'kathy': 4966, 'elevate': 2989, 'predictably': 6835, 'achieve': 215, 'mel': 5654, 'anxiety': 539, '1977': 64, 'exploitative': 3279, 'versus': 9516, 'payoff': 6512, 'thick': 8985, 'nicholas': 6077, 'bronte': 1245, 'dalton': 2311, 'rochester': 7551, 'possesses': 6786, 'portrays': 6774, 'calls': 1362, 'suffers': 8683, 'bully': 1295, 'perceived': 6543, 'zelah': 9983, 'clarke': 1716, '18': 15, 'attributes': 735, 'temper': 8905, 'aims': 355, 'household': 4406, 'tempered': 8906, 'theirs': 8963, 'presumed': 6869, 'miracle': 5767, 'poetic': 6714, 'gypsy': 4092, 'eyre': 3316, 'significance': 8099, 'equipment': 3126, 'text': 8943, 'remembering': 7338, 'symbols': 8810, 'jewelry': 4871, 'marries': 5543, 'movement': 5912, 'boxing': 1165, 'object': 6183, 'desires': 2544, 'budgets': 1278, 'keys': 4994, 'shorter': 8051, 'cameras': 1370, 'casted': 1471, 'roth': 7603, 'kyle': 5075, 'englund': 3072, 'winston': 9831, 'scorsese': 7785, 'dallas': 2310, 'superstar': 8725, 'madonna': 5447, 'francisco': 3690, 'inch': 4567, 'annoyed': 515, 'tenant': 8911, 'tara': 8852, 'fitzgerald': 3537, 'letting': 5229, 'hairdo': 4106, 'cruelty': 2250, 'springer': 8420, 'extent': 3303, 'subtly': 8659, 'skinny': 8170, 'shell': 8006, 'formulaic': 3658, 'manchu': 5494, 'assassins': 673, 'wink': 9826, 'fantasies': 3369, 'secluded': 7832, 'awakens': 772, 'clueless': 1784, 'franco': 3691, 'abandon': 150, 'admitted': 278, 'admired': 273, 'experiencing': 3260, 'poet': 6713, 'corman': 2101, 'bucket': 1271, 'posh': 6779, 'unusually': 9424, 'embrace': 3014, 'represented': 7382, 'larry': 5120, 'sanders': 7697, 'amusement': 464, 'nt': 6162, 'townsfolk': 9155, 'preacher': 6823, 'identities': 4477, 'pretending': 6871, 'deaf': 2379, 'paperhouse': 6434, 'anyhow': 543, 'adding': 258, 'increasingly': 4587, 'ongoing': 6268, 'blames': 1042, 'disastrous': 2659, 'pals': 6424, 'elm': 3001, 'ish': 4793, 'handy': 4132, 'conclusions': 1956, 'charlotte': 1576, 'burke': 1306, 'definite': 2435, 'worried': 9897, 'clone': 1765, 'twins': 9296, 'designer': 2540, 'pause': 6505, 'snake': 8245, 'fx': 3770, 'loss': 5373, 'distract': 2704, 'laundry': 5144, 'concerning': 1951, 'pond': 6744, 'cushing': 2286, 'chloe': 1639, 'reid': 7286, 'maher': 5460, 'politically': 6738, 'incorrect': 4584, 'valid': 9468, 'argument': 608, 'experts': 3267, 'scientists': 7776, 'fields': 3465, 'professionals': 6928, 'sources': 8333, 'education': 2949, 'refers': 7261, 'evidence': 3189, 'herd': 4261, 'exceptions': 3217, 'norm': 6125, 'laurence': 5148, 'christians': 1667, 'inaccuracies': 4559, 'questioning': 7070, 'deck': 2412, 'relates': 7295, 'october': 6217, 'mining': 5755, 'grows': 4051, 'miner': 5750, 'stares': 8464, 'passes': 6479, 'occupation': 6210, 'test': 8937, 'rockets': 7555, 'blow': 1078, 'fence': 3443, 'dern': 2520, 'judges': 4921, 'motives': 5900, 'bent': 964, 'recycled': 7242, 'stole': 8541, '1997': 86, '1999': 88, 'revival': 7465, '40s': 125, 'casablanca': 1462, 'cake': 1354, 'maggie': 5453, 'sara': 7707, 'freaks': 3703, 'controversial': 2058, 'workers': 9888, 'marred': 5540, 'loneliness': 5345, 'moronic': 5880, 'insisted': 4671, 'blatant': 1048, 'advertising': 299, 'franchise': 3688, 'pun': 7022, 'digest': 2617, 'bar': 837, 'ripoff': 7511, 'adolescent': 280, 'prejudice': 6841, 'heading': 4211, 'notions': 6152, 'respectable': 7412, 'salvage': 7685, 'marlene': 5536, 'grandparents': 3993, 'bye': 1342, 'awkwardly': 787, 'wounded': 9910, 'defense': 2429, 'kate': 4963, 'jerk': 4859, 'blank': 1045, 'relatives': 7303, 'knocked': 5047, 'jackass': 4816, 'nest': 6056, 'egg': 2965, 'buys': 1339, 'beer': 911, 'thumbs': 9041, 'noises': 6108, 'saturday': 7727, 'skull': 8176, 'val': 9466, 'kilmer': 5017, 'mcdermott': 5614, 'josh': 4908, 'addict': 255, 'aftermath': 323, 'mass': 5567, 'serving': 7927, 'capture': 1415, 'masterson': 5579, 'nathan': 6001, 'detroit': 2571, 'sarah': 7708, 'lena': 5201, 'triumphs': 9252, 'beg': 917, 'deluise': 2463, 'buildings': 1287, 'messy': 5700, 'martino': 5553, 'scorpion': 7784, 'tail': 8827, 'giallo': 3870, 'heyday': 4277, 'insurance': 4694, 'subsequently': 8649, 'clad': 1705, 'assassin': 671, 'brutality': 1262, 'bruno': 1259, 'crystal': 2259, 'maniac': 5499, 'dudley': 2858, 'liza': 5316, 'hokey': 4333, 'horrid': 4386, 'understated': 9351, 'pierce': 6637, 'brosnan': 1251, 'attenborough': 719, 'nations': 6004, 'adopted': 281, 'decades': 2398, 'combat': 1844, 'ali': 389, 'filthy': 3497, 'champion': 1542, 'fried': 3718, 'resort': 7409, 'tolerable': 9095, 'annoy': 513, 'behave': 925, 'conditions': 1960, 'warrior': 9670, 'blurry': 1086, 'informs': 4635, 'earn': 2908, 'disappearing': 2650, 'hiding': 4283, 'noise': 6107, 'bang': 832, 'surely': 8739, 'pitch': 6652, 'subtitles': 8655, 'fifteen': 3469, 'sat': 7715, 'continually': 2037, 'progressed': 6940, 'weeks': 9728, 'chu': 1675, 'yuen': 9977, 'secretary': 7838, 'witness': 9852, 'assigned': 677, 'miracles': 5768, 'sparse': 8350, 'skin': 8168, 'cities': 1698, 'cruel': 2248, 'isolation': 4798, 'affairs': 306, 'advanced': 291, 'firstly': 3528, '24': 109, '2002': 95, 'bittersweet': 1029, 'employs': 3036, 'cue': 2263, 'robby': 7542, 'accidental': 196, 'pakeezah': 6413, 'coverage': 2152, 'fluid': 3593, 'strain': 8563, 'depicts': 2509, 'tragedy': 9172, 'simultaneously': 8123, 'gathering': 3817, 'drum': 2845, 'bollywood': 1105, 'corners': 2104, 'whatsoever': 9759, 'repeats': 7367, 'remaining': 7328, 'copies': 2092, 'lays': 5160, 'capturing': 1418, 'forbidden': 3629, 'jordan': 4905, 'exposure': 3293, 'participation': 6463, 'rights': 7505, 'devastating': 2573, 'sections': 7842, 'finale': 3499, 'recognized': 7228, 'threaten': 9015, 'system': 8817, 'stevenson': 8522, 'measure': 5634, 'stranger': 8568, 'fleeing': 3561, 'profit': 6931, 'abilities': 155, 'porter': 6764, 'convinces': 2078, 'hire': 4310, 'yacht': 9944, 'cruise': 2251, 'anders': 475, 'seas': 7823, 'convicted': 2074, 'verdict': 9507, 'carnival': 1443, 'knocks': 5049, 'interests': 4722, 'blond': 1068, 'othello': 6325, 'devoid': 2585, 'planes': 6671, 'filler': 3485, 'lol': 5340, 'improved': 4553, 'unfortunate': 9373, 'nominations': 6113, 'papers': 6435, 'published': 7013, 'fencing': 3444, 'betrayal': 978, 'novelist': 6156, 'appreciation': 582, 'dante': 2340, 'collaboration': 1816, 'darkly': 2348, 'infected': 4619, 'unsatisfying': 9414, 'females': 3439, 'unwatchable': 9425, 'hug': 4417, 'guessing': 4065, 'dung': 2873, 'il': 4496, 'roller': 7570, 'hacks': 4099, 'mcadams': 5608, 'cillian': 1683, 'murphy': 5944, 'passable': 6475, '28': 114, 'kicked': 4999, 'hockey': 4331, 'terrorist': 8932, 'steal': 8495, 'gum': 4075, 'terrorists': 8933, 'oblivious': 6188, 'pedestrian': 6526, 'thompson': 9003, 'eh': 2969, 'wears': 9717, 'titled': 9078, 'se': 7814, 'expensive': 3256, 'stinker': 8536, 'victorian': 9532, 'titanic': 9076, 'harbor': 4151, 'strike': 8587, 'spring': 8419, 'eliminate': 2993, 'capitalism': 1404, 'communism': 1886, 'depict': 2504, 'contribution': 2052, 'quarter': 7061, 'similarly': 8113, 'mustache': 5956, 'bread': 1193, 'map': 5515, 'clay': 1730, 'berlin': 969, 'historically': 4318, 'phillip': 6602, 'civilians': 1703, 'revealing': 7452, 'relevant': 7314, 'stranded': 8565, 'intensely': 4707, 'slut': 8221, 'sneaking': 8250, 'psychologist': 7006, 'liz': 5315, 'examples': 3207, 'vertigo': 9517, 'bernard': 970, 'influence': 4625, 'partially': 6460, 'clunky': 1789, 'breasts': 1201, 'visceral': 9573, 'controls': 2057, 'conservative': 2000, 'shirts': 8028, 'staging': 8438, 'characteristic': 1563, 'angles': 492, 'tracking': 9163, 'distant': 2698, 'dropped': 2835, 'glove': 3919, 'integrated': 4697, 'occurs': 6215, 'underused': 9354, 'exit': 3244, 'necessary': 6025, 'comfortable': 1860, 'unfold': 9369, 'cheated': 1593, 'survived': 8760, 'remakes': 7331, 'da': 2301, 'liam': 5236, 'neeson': 6035, 'casper': 1467, 'friendly': 3720, 'cain': 1352, 'smoke': 8239, 'vanessa': 9478, 'kim': 5018, 'wendt': 9739, 'wig': 9802, 'varma': 9488, 'ki': 4997, 'sholay': 8039, 'pains': 6403, 'claims': 1709, 'borrow': 1139, 'climbs': 1757, 'ajay': 363, 'pistol': 6650, 'trigger': 9243, 'spared': 8347, 'agony': 339, 'partners': 6470, 'depends': 2503, 'hindi': 4301, 'raj': 7114, 'brooding': 1246, 'amitabh': 454, 'bachchan': 797, 'miserably': 5778, 'link': 5286, 'wrestler': 9919, 'wrestling': 9920, 'rampage': 7121, 'giggle': 3879, 'weapons': 9714, 'existent': 3241, 'violin': 9564, 'insulted': 4691, 'echo': 2929, 'fades': 3334, 'cinematographer': 1689, 'transform': 9186, 'drivel': 2828, 'elevator': 2990, 'casual': 1476, 'suits': 8698, 'culp': 2265, 'columbo': 1841, 'villains': 9555, 'cassidy': 1469, 'hires': 4312, 'report': 7375, 'deepest': 2422, 'maturity': 5596, 'richly': 7486, 'lightly': 5256, 'italy': 4806, 'leila': 5199, 'suffice': 8684, 'nineties': 6093, 'expressed': 3295, 'cynicism': 2298, 'grandfather': 3989, 'inform': 4630, '90s': 145, 'conceit': 1941, 'ala': 369, 'ho': 4329, 'palm': 6422, 'reactions': 7177, 'dense': 2489, 'maria': 5521, 'struggled': 8605, 'required': 7391, '1980': 67, 'misty': 5799, 'pamela': 6426, 'seymour': 7954, 'causing': 1493, 'complications': 1925, '1976': 63, 'settings': 7934, 'yearning': 9950, 'bats': 872, 'employed': 3032, 'unsettling': 9416, 'fifty': 3472, 'consists': 2011, 'bitten': 1027, 'vacation': 9461, 'ruined': 7626, 'reference': 7257, 'raving': 7162, 'sweat': 8785, 'cheaper': 1590, 'muppets': 5934, 'insist': 4670, 'forgets': 3641, 'eighty': 2972, 'sketches': 8163, 'dreadfully': 2808, 'amok': 455, 'bright': 1225, 'rookie': 7587, 'foxx': 3680, 'alvin': 431, 'morse': 5883, 'regime': 7277, '1989': 77, 'belushi': 952, 'rotten': 7604, 'tow': 9148, 'sporting': 8409, 'goods': 3951, 'hamilton': 4116, 'lengthy': 5205, 'criticized': 2227, 'elvira': 3005, 'rambling': 7117, 'acquaintance': 224, 'intricate': 4739, 'delighted': 2452, 'colin': 1815, 'holland': 4340, 'mothers': 5892, 'idle': 4483, 'damsel': 2319, 'distress': 2709, 'flavor': 3555, 'francis': 3689, 'nielsen': 6084, 'commander': 1866, 'adams': 247, 'distinguished': 2702, 'id': 4469, 'stevens': 8521, 'doc': 2728, 'electronic': 2984, 'krell': 5063, 'toes': 9088, 'scientific': 7774, 'enigmatic': 3077, 'morbius': 5870, 'prop': 6965, 'complexities': 1922, 'psychology': 7007, 'deliberately': 2447, 'confront': 1973, 'pushes': 7044, 'gates': 3814, 'operate': 6279, 'carefully': 1428, 'crafted': 2167, 'realization': 7196, 'multiple': 5928, 'flashbacks': 3549, 'leather': 5179, 'youth': 9973, 'wounds': 9911, 'recalls': 7215, 'vignettes': 9549, 'suave': 8638, 'mannerisms': 5508, 'shoulders': 8059, 'cameron': 1371, 'flea': 3560, 'barker': 843, 'wisely': 9839, 'ambiance': 442, 'reckless': 7224, 'completed': 1919, 'rolled': 7569, 'europeans': 3168, 'stills': 8532, 'varying': 9489, 'connery': 1987, 'dustin': 2881, 'hector': 4234, 'hunters': 4445, 'dragon': 2789, 'mythical': 5976, 'dreaming': 2810, 'asia': 657, 'eastern': 2919, 'promoting': 6959, 'worm': 9894, 'erika': 3132, 'comprehend': 1932, 'filling': 3486, 'severely': 7945, 'fluff': 3592, 'reasonable': 7205, 'ticket': 9045, 'uwe': 9460, 'boll': 1104, 'tempted': 8909, 'assure': 690, 'proof': 6964, 'filth': 3496, 'trend': 9228, 'influences': 4627, 'hostel': 4397, 'hyper': 4459, 'prisoners': 6903, 'mute': 5960, 'slaughtered': 8190, '666': 135, 'bag': 814, 'retarded': 7436, 'spree': 8418, 'fanatic': 3365, 'dumber': 2869, 'refuse': 7268, 'remark': 7332, 'smashes': 8232, 'masterfully': 5574, 'waking': 9624, 'germans': 3857, 'hustler': 4453, 'debra': 2394, 'winger': 9824, 'quaid': 7054, 'breaking': 1197, 'waves': 9698, 'reincarnation': 7288, 'tank': 8846, 'dan': 2320, 'occult': 6209, 'graphics': 3998, 'linear': 5281, 'criterion': 2221, 'radical': 7097, 'automatic': 759, 'pornographic': 6761, 'testimony': 8940, 'diary': 2596, 'pivotal': 6658, 'quirks': 7079, 'degrees': 2442, 'cleverly': 1739, 'bridget': 1221, 'exquisite': 3300, 'lords': 5363, 'snakes': 8246, 'meaningful': 5627, 'polish': 6735, 'prank': 6819, 'inducing': 4605, 'cringing': 2214, 'interactions': 4717, 'combined': 1847, 'forgivable': 3644, 'youtube': 9976, 'concentrates': 1944, 'fathers': 3399, 'tess': 8936, 'reese': 7253, 'witherspoon': 9849, 'sweden': 8786, 'degree': 2441, 'folk': 3608, 'musician': 5951, 'choir': 1643, 'austria': 749, 'echoes': 2930, 'revolt': 7466, 'hostile': 4398, 'corny': 2105, 'magazines': 5452, 'frail': 3682, 'radar': 7095, 'nevada': 6062, 'hardest': 4156, 'shelves': 8010, 'stores': 8555, 'slashers': 8187, 'rebels': 7213, 'princess': 6893, 'hunter': 4444, 'impress': 4544, 'animations': 501, 'chicks': 1624, 'tasty': 8866, 'ralph': 7115, 'bakshi': 819, 'backwards': 805, 'happenings': 4145, 'witnesses': 9854, 'ahem': 345, 'subdued': 8640, 'imprisoned': 4550, 'toole': 9119, 'honorable': 4363, 'telly': 8904, 'stooges': 8549, 'bothers': 1149, 'scooby': 7778, 'doo': 2757, 'chuckles': 1678, 'sesame': 7928, 'bear': 885, 'magician': 5457, 'bert': 973, 'ernie': 3134, 'passing': 6480, 'whip': 9776, 'frye': 3738, 'peterson': 6588, 'invites': 4763, 'susan': 8765, 'befriends': 916, 'suburban': 8660, 'corporations': 2108, 'climb': 1755, 'dig': 2616, 'dandy': 2328, 'stretched': 8582, 'relax': 7304, 'concentrate': 1943, 'meanings': 5629, 'choices': 1642, 'bless': 1057, 'similarity': 8112, 'inane': 4562, 'spare': 8346, 'standout': 8455, 'letdown': 5224, 'judged': 4919, 'generous': 3838, 'irwin': 4790, 'bloke': 1067, 'crocodile': 2230, 'ate': 700, 'poison': 6723, 'battling': 877, 'structured': 8603, 'fifth': 3470, 'bold': 1102, 'nazis': 6015, 'miniseries': 5757, 'delve': 2464, 'psyche': 7000, 'goebbels': 3931, 'destined': 2553, 'nuns': 6175, 'burton': 1316, 'plodding': 6701, 'genuinely': 3849, 'origin': 6309, 'disasters': 2658, 'allowing': 410, 'havoc': 4197, 'crushing': 2254, 'dynamite': 2896, 'intent': 4709, 'korean': 5060, 'mourning': 5905, 'dislike': 2685, 'indication': 4598, 'introducing': 4747, 'tested': 8939, 'randomly': 7128, 'rampant': 7122, 'slower': 8218, 'alot': 419, 'widowed': 9798, 'employee': 3033, 'pot': 6797, 'plant': 6676, 'enjoys': 3083, 'travelling': 9212, 'wore': 9884, 'sore': 8315, 'thumb': 9040, 'profoundly': 6934, 'insightful': 4666, 'traumatic': 9207, 'torturing': 9135, 'prolific': 6949, 'legacy': 5189, 'respects': 7417, 'commit': 1877, 'wound': 9909, 'cons': 1993, 'loaded': 5322, 'lay': 5156, 'stargate': 8465, 'sg': 7956, 'imagining': 4516, 'wolf': 9862, 'voters': 9607, 'predict': 6832, 'sleepwalkers': 8199, 'feed': 3424, 'proceeds': 6912, 'amidst': 452, 'showcase': 8065, 'muddled': 5926, 'puzzled': 7050, 'perry': 6566, 'randy': 7129, 'graceful': 3976, 'losing': 5372, 'carey': 1433, 'medicine': 5642, 'café': 1349, 'waitress': 9620, 'mildred': 5732, 'realizing': 7200, 'engagement': 3066, 'emil': 3017, 'flirting': 3577, 'nora': 6123, 'fay': 3411, 'shelter': 8009, 'frances': 3687, 'dee': 2416, 'mates': 5586, 'prepare': 6849, 'kitsch': 5035, 'ballet': 826, 'parent': 6445, 'sexuality': 7951, 'stirring': 8538, 'ignorant': 4488, 'mysticism': 5974, 'confuse': 1978, 'berkeley': 968, 'prophet': 6971, 'coach': 1792, 'elizabeth': 2996, 'ellen': 2998, 'homicidal': 4353, 'asylum': 698, 'anthology': 526, 'collins': 1829, 'macabre': 5434, 'keeper': 4975, 'segments': 7864, 'poker': 6726, 'crucial': 2246, 'coma': 1843, 'bondage': 1111, 'euro': 3164, 'apes': 556, 'bradford': 1176, 'teamed': 8880, 'complains': 1914, 'outlandish': 6342, 'banter': 836, 'intentional': 4711, 'hears': 4219, 'arrived': 634, 'shares': 7985, 'asset': 676, 'shocks': 8035, 'pizza': 6660, 'whipped': 9777, 'urban': 9441, 'memoirs': 5667, 'miscast': 5775, 'global': 3911, 'debate': 2391, 'einstein': 2973, 'testing': 8941, 'shore': 8047, 'lance': 5100, 'marvelously': 5558, 'winters': 9833, 'tide': 9047, 'dangerously': 2333, 'stern': 8518, 'overbearing': 6356, 'logan': 5336, 'mae': 5449, 'slew': 8204, 'crisp': 2217, 'wells': 9737, 'hitchhiker': 4322, 'galaxy': 3783, 'bliss': 1061, 'korda': 5058, 'cedric': 1500, 'richardson': 7485, 'massey': 5570, 'preachy': 6825, 'citizens': 1700, 'literal': 5304, 'explodes': 3275, 'gas': 3811, 'remembers': 7339, 'bullying': 1296, 'fuel': 3740, 'lands': 5105, 'screens': 7800, 'warns': 9667, 'criticize': 2226, 'foley': 3607, 'ideals': 4472, 'millennium': 5738, 'explicit': 3273, 'exploits': 3281, 'wonders': 9873, 'scarface': 7751, 'castro': 1474, 'cuban': 2261, 'thankful': 8950, 'records': 7236, 'rid': 7490, 'stepped': 8511, 'lopez': 5361, 'currently': 2279, 'manny': 5510, 'gain': 3779, 'cocaine': 1797, 'iron': 4779, 'engrossing': 3073, 'emotionally': 3024, 'pfeiffer': 6592, 'integral': 4696, 'stoic': 8540, 'murray': 5945, 'omar': 6261, 'peckinpah': 6524, 'depicting': 2506, 'periods': 6560, 'duties': 2883, 'peers': 6529, 'products': 6924, 'obsolete': 6200, 'appreciated': 581, 'colonel': 1831, 'pertwee': 6578, 'busey': 1321, 'gloomy': 3913, 'continuous': 2043, 'edgy': 2939, 'dragons': 2790, 'obligatory': 6186, 'lab': 5077, 'blob': 1063, 'cave': 1495, 'vital': 9588, 'meredith': 5687, 'barbra': 839, 'dismiss': 2688, 'descent': 2523, 'esther': 3155, 'outset': 6350, 'responds': 7419, 'inexplicably': 4616, 'shamelessly': 7977, 'kristofferson': 5067, 'managing': 5493, 'seller': 7872, 'bee': 909, 'kenny': 4987, 'evergreen': 3182, '2006': 99, 'peters': 6587, 'wardrobe': 9655, 'introduce': 4744, 'mysteries': 5969, 'abruptly': 168, 'cycle': 2296, 'mathieu': 5587, 'competitive': 1910, 'signal': 8096, 'loony': 5358, 'spin': 8381, 'rangers': 7131, 'rifle': 7500, 'encouraged': 3045, 'picking': 6629, 'recovering': 7238, 'unexpectedly': 9364, 'wwi': 9940, 'mobster': 5814, 'valentine': 9467, 'senses': 7887, 'rumors': 7634, 'dis': 2644, 'illegal': 4498, 'sanity': 7703, 'scoop': 7779, 'dominated': 2749, 'software': 8273, 'approved': 591, 'tastes': 8865, 'satisfaction': 7721, 'rewarding': 7474, 'creek': 2200, 'breeze': 1209, 'effortless': 2962, 'blunt': 1084, 'arquette': 627, 'inability': 4558, 'misguided': 5783, 'campus': 1377, 'target': 8854, 'mia': 5711, 'brow': 1255, 'smarter': 8230, 'tended': 8913, 'convention': 2063, 'lump': 5414, 'darling': 2350, 'clint': 1758, 'residents': 7403, 'disorder': 2690, 'indians': 4596, 'wilderness': 9805, 'brennan': 1212, 'border': 1131, 'dust': 2880, 'ruled': 7631, 'tightly': 9055, 'gannon': 3796, 'mcintire': 5617, 'relaxed': 7305, 'interaction': 4716, 'talky': 8843, 'lend': 5202, 'overblown': 6357, 'mice': 5713, 'mormon': 5876, 'mormons': 5877, 'richards': 7484, 'duff': 2861, 'ace': 214, 'emma': 3019, 'sneak': 8249, 'jesus': 4867, 'forgetting': 3643, 'wine': 9822, 'doubts': 2770, 'extra': 3305, 'appeals': 567, 'capacity': 1401, 'compassion': 1900, 'hello': 4245, 'buster': 1326, 'ramones': 7120, 'gather': 3815, 'surrogate': 8753, 'micheal': 5716, 'des': 2521, 'hoot': 4369, 'conveys': 2072, 'empathy': 3026, 'stronger': 8598, 'dozens': 2782, 'bumbling': 1298, 'posing': 6780, 'january': 4835, 'opinions': 6284, 'forum': 3668, 'viewpoint': 9545, 'retrospect': 7441, 'uncertain': 9328, 'pierre': 6638, 'transparent': 9197, 'antwerp': 537, 'analysis': 469, 'loach': 5320, 'cultures': 2269, 'establishment': 3153, 'glorious': 3915, 'ram': 7116, 'gopal': 3955, 'deol': 2496, 'scripting': 7808, 'pc': 6516, 'pakistan': 6414, 'paulie': 6504, 'enters': 3096, 'maurice': 5600, 'legitimate': 5195, 'anticipated': 530, 'span': 8344, 'parade': 6437, 'parodies': 6453, 'minimum': 5754, 'hart': 4175, 'redneck': 7248, 'bash': 856, 'akshay': 367, 'kumar': 5071, 'kareena': 4958, 'album': 377, 'dialogs': 2590, 'cheech': 1598, 'chong': 1646, 'sleaze': 8194, 'werewolf': 9745, 'wang': 9644, 'camps': 1376, 'veterans': 9521, '16': 13, 'betty': 985, 'duh': 2863, 'hyped': 4458, 'joint': 4895, 'btw': 1267, 'portrayals': 6771, 'mentality': 5676, 'yugoslavia': 9978, 'meteor': 5704, 'crashes': 2173, 'crater': 2176, 'update': 9431, 'mister': 5797, 'ants': 536, 'wrought': 9933, '1963': 49, 'martian': 5550, 'readers': 7180, 'romero': 7582, 'dawn': 2368, 'shirley': 8026, 'magically': 5456, 'pattern': 6499, 'dumbest': 2870, 'alongside': 418, 'conveying': 2071, 'pale': 6418, 'freaked': 3701, 'hometown': 4352, 'graveyard': 4006, 'dug': 2862, 'satan': 7716, 'recommendation': 7230, 'engine': 3068, 'benny': 961, 'proceed': 6910, 'banal': 829, 'philadelphia': 6600, 'investigator': 4758, 'inadvertently': 4561, 'snuff': 8259, 'ghetto': 3866, 'mac': 5433, 'capital': 1403, 'astounding': 696, 'styled': 8634, 'ma': 5431, 'colony': 1833, 'vapid': 9482, 'remarkably': 7334, 'campbell': 1374, 'globe': 3912, 'developments': 2578, 'freaky': 3704, 'crop': 2233, 'proportions': 6973, 'involve': 4764, 'sheen': 8000, 'rex': 7475, 'mccarthy': 5611, 'directs': 2641, 'boasts': 1090, 'distraction': 2707, 'accents': 186, 'boyer': 1167, 'greek': 4018, 'lorre': 5366, 'policy': 6734, 'greta': 4026, 'garbo': 3801, 'swedish': 8787, 'exclusive': 3225, 'gathered': 3816, 'data': 2356, 'biography': 1014, 'ranch': 7124, 'spirits': 8388, 'assorted': 685, 'girlfriends': 3891, 'rude': 7623, 'abusive': 182, 'messing': 5699, 'drastically': 2799, 'thirds': 8996, 'jill': 4876, 'tame': 8845, 'stiller': 8531, 'aniston': 505, 'limp': 5276, '3000': 118, 'suspension': 8773, 'wagner': 9616, 'mechanical': 5638, 'rumor': 7633, 'volume': 9599, 'demented': 2469, 'status': 8489, 'taboo': 8821, 'pursuit': 7041, 'rightly': 7504, 'translated': 9195, 'characteristics': 1564, 'shopping': 8045, 'jungle': 4937, 'jess': 4863, 'diabolical': 2588, 'cliff': 1748, 'suburbia': 8661, 'civilization': 1704, 'item': 4807, 'deer': 2424, 'geoffrey': 3850, 'murderers': 5938, 'butch': 1329, 'bite': 1023, 'howling': 4413, 'favour': 3406, 'assist': 679, 'appropriately': 589, 'crashed': 2172, 'ruining': 7627, 'soooo': 8307, 'stab': 8428, 'boob': 1117, 'popping': 6753, 'immature': 4521, 'mendes': 5674, 'origins': 6314, 'eldest': 2979, 'weaker': 9707, 'praise': 6816, 'anytime': 547, 'perlman': 6563, 'abortion': 161, 'badness': 812, 'inferior': 4621, 'criteria': 2220, 'thread': 9013, 'fingers': 3509, 'shaped': 7982, 'frames': 3685, 'diane': 2595, 'unlikeable': 9401, 'mouthed': 5908, 'repressed': 7385, 'prostitute': 6976, 'characterizations': 1566, 'turturro': 9288, 'chess': 1614, 'watson': 9695, 'consciousness': 1996, 'quasi': 7063, 'rings': 7508, 'misleading': 5784, 'lurid': 5421, 'distributors': 2712, 'mill': 5737, 'shocker': 8032, 'slash': 8185, 'pleasantly': 6693, 'somber': 8287, 'paxton': 6507, 'booth': 1128, 'simpler': 8117, 'scale': 7741, 'eats': 2925, 'monks': 5845, 'resulting': 7431, 'resembling': 7400, 'eagerly': 2900, 'vampires': 9475, 'speechless': 8364, 'pal': 6415, 'contemplating': 2027, 'heres': 4263, 'genetic': 3839, 'boogeyman': 1119, 'forgiven': 3646, 'september': 7904, 'policemen': 6732, 'ing': 4636, 'matches': 5583, 'platform': 6680, 'enormous': 3085, 'fixed': 3540, 'justified': 4945, '33': 120, 'deemed': 2419, 'scan': 7743, 'heartwarming': 4225, 'panic': 6430, 'kazan': 4970, 'april': 593, 'laboratory': 5081, 'efficient': 2960, 'atomic': 705, 'industrial': 4609, 'discussed': 2671, 'clark': 1715, 'management': 5490, 'arriving': 636, 'principles': 6897, 'st': 8427, 'warfare': 9657, 'presume': 6868, 'commando': 1868, 'espionage': 3145, '1942': 33, '23': 108, '200': 92, 'covering': 2154, 'applause': 575, 'abbott': 152, 'costello': 2120, 'swords': 8802, 'repetitive': 7368, 'unconscious': 9332, 'studied': 8614, 'zizek': 9989, 'freud': 3716, 'noel': 6105, 'physics': 6623, 'professor': 6929, 'stephanie': 8508, 'stella': 8505, 'perverted': 6583, 'hybrid': 4455, 'adventurous': 296, 'shotgun': 8055, 'teachers': 8876, 'odyssey': 6223, 'manga': 5497, 'fought': 3672, 'majestic': 5469, 'austen': 745, 'artificial': 644, 'sufficient': 8685, 'samantha': 7688, 'psychic': 7003, 'drugged': 2843, 'mandatory': 5495, 'commits': 1879, 'denouement': 2488, 'daisies': 2308, 'whimsical': 9773, 'eddie': 2934, 'sammi': 7690, 'recording': 7235, 'siblings': 8080, 'neighbors': 6041, 'harmless': 4166, 'poke': 6724, 'worship': 9901, 'tomb': 9102, '19th': 89, 'kingdom': 5025, 'yarn': 9946, 'palace': 6416, 'egypt': 2967, 'sophisticated': 8310, 'egyptian': 2968, 'taxi': 8870, '1981': 69, 'agenda': 332, 'accurately': 211, 'chuckle': 1677, 'rebecca': 7209, 'flame': 3544, 'christie': 1668, 'bates': 866, 'frankie': 3694, 'dirty': 2643, 'complement': 1917, 'italians': 4805, 'danced': 2323, 'invested': 4754, 'ritter': 7523, 'rational': 7157, '4th': 127, '3rd': 123, 'shortened': 8050, 'surgery': 8744, 'amy': 466, 'extensive': 3302, 'paramount': 6442, 'vaudeville': 9492, 'organ': 6303, 'accompany': 201, 'en': 3038, 'gestures': 3861, 'showcases': 8066, 'ricardo': 7480, 'cortez': 2118, 'foolish': 3621, 'adequately': 266, 'divine': 2721, 'goings': 3935, 'barry': 848, 'nash': 5997, 'lt': 5399, 'spotlight': 8412, 'detectives': 2566, 'deputy': 2515, 'file': 3481, 'motions': 5895, 'array': 629, 'strongest': 8599, 'criminally': 2210, 'forbes': 3628, 'sly': 8223, 'oz': 6384, 'advances': 292, 'useful': 9449, 'disappears': 2651, 'juice': 4925, 'colleagues': 1821, 'cream': 2182, 'upbeat': 9429, 'bombs': 1108, 'shaking': 7970, 'permanently': 6565, 'users': 9452, 'karen': 4959, 'godzilla': 3930, 'revolving': 7471, '1974': 61, 'praising': 6818, 'romp': 7583, 'packs': 6393, 'expects': 3253, 'battlefield': 874, 'blurred': 1085, 'fourth': 3677, 'someday': 8290, 'dash': 2354, 'factory': 3329, 'lecture': 5183, 'landscapes': 5107, 'paints': 6409, 'tips': 9071, 'dreck': 2814, 'plagued': 6667, 'skeptical': 8161, 'gadgets': 3776, 'holly': 4342, 'norris': 6129, 'cocky': 1800, 'terrorism': 8931, 'downtown': 2780, 'pee': 6528, 'shops': 8046, 'cents': 1522, 'spiral': 8385, 'arranged': 628, 'couples': 2141, 'blending': 1055, 'bus': 1318, 'hadley': 4101, 'marylee': 5561, 'oil': 6247, 'slim': 8211, 'drinking': 2825, 'conniving': 1988, 'smitten': 8238, 'restrained': 7427, 'seeming': 7857, 'suspicion': 8774, 'chef': 1607, 'originals': 6313, 'mario': 5526, 'usa': 9445, 'hating': 4188, 'anniversary': 511, 'worlds': 9892, 'mexico': 5708, 'monday': 5838, 'occupied': 6211, 'earl': 2904, 'predator': 6829, 'novelty': 6158, 'scifi': 7777, 'vcr': 9494, 'fascination': 3384, 'objects': 6185, 'textbook': 8944, 'lawn': 5152, 'wheeler': 9762, 'abroad': 166, 'promised': 6954, 'refused': 7269, 'replacing': 7371, 'duck': 2855, 'additionally': 261, 'sang': 7702, 'peaceful': 6518, 'distributed': 2710, 'sober': 8263, 'snowman': 8257, 'lil': 5268, 'underwear': 9356, 'kidnapping': 5008, 'improbable': 4551, 'crawford': 2178, 'bronson': 1244, 'muscle': 5946, 'answering': 523, 'runaway': 7636, 'fashioned': 3388, 'generated': 3834, 'khan': 4995, 'approached': 585, 'earning': 2911, 'publicity': 7012, 'premiere': 6844, 'expose': 3290, 'schools': 7770, 'crosses': 2237, '1931': 21, 'transport': 9199, 'personnel': 6573, 'curiously': 2276, 'brent': 1213, 'economic': 2931, 'jewels': 4872, 'jealousy': 4848, 'employees': 3034, 'confronting': 1976, 'lesbians': 5216, 'theories': 8973, 'educated': 2948, 'wray': 9916, 'warehouse': 9656, 'guarantee': 4057, 'observations': 6194, 'pole': 6729, 'kidnap': 5006, 'swimming': 8792, 'fling': 3574, 'coward': 2157, 'clarence': 1713, 'creep': 2201, 'jeremy': 4858, 'hound': 4402, '2008': 101, 'eighties': 2971, 'blockbusters': 1066, 'harlin': 4163, 'cliffhanger': 1749, 'viggo': 9547, 'mortensen': 5885, 'excess': 3218, 'highlights': 4289, 'annoys': 518, 'mutants': 5958, 'dares': 2343, 'iranian': 4773, 'iran': 4772, 'towers': 9152, 'flashes': 3550, 'jumping': 4934, 'israel': 4799, 'shouting': 8062, 'hitting': 4325, 'retirement': 7438, 'coburn': 1796, 'robbery': 7538, 'deserts': 2531, 'garfield': 3806, 'showdown': 8067, '1966': 52, 'distracted': 2705, 'bosses': 1142, 'carnage': 1442, 'shield': 8016, 'griffith': 4031, 'boobs': 1118, 'leon': 5211, 'romances': 7576, 'gilbert': 3881, 'counter': 2129, 'refer': 7256, 'dancer': 2324, 'recommending': 7232, 'defeat': 2425, 'bing': 1012, 'crosby': 2234, 'burst': 1312, 'decorated': 2414, 'slips': 8214, 'canon': 1395, 'mann': 5505, 'format': 3652, 'roberts': 7544, 'reserved': 7401, 'geeks': 3823, 'imply': 4538, 'rounded': 7608, 'indulgent': 4608, 'envy': 3117, 'spoofs': 8405, 'translate': 9194, 'fuller': 3746, 'jacknife': 4820, 'driver': 2830, 'precisely': 6828, 'moreover': 5873, 'hayward': 4203, 'subtleties': 8657, 'slugs': 8220, 'mutated': 5959, 'toxic': 9157, 'promptly': 6961, 'juan': 4915, 'kari': 4960, 'profile': 6930, 'glen': 3906, 'heather': 4228, 'stoltz': 8543, 'spread': 8417, 'adored': 284, 'lieutenant': 5244, 'faux': 3402, 'trusted': 9266, 'compliment': 1926, 'challenges': 1538, 'disappeared': 2649, 'lone': 5344, 'buffy': 1282, 'basinger': 861, 'babe': 790, 'carnosaur': 1444, 'grendel': 4025, 'beowulf': 965, 'hulk': 4424, 'stinks': 8537, 'bubble': 1269, 'foul': 3673, 'extraordinarily': 3306, 'alternately': 426, 'bursting': 1313, 'disgusted': 2681, 'additional': 260, 'scum': 7813, 'disgust': 2680, 'require': 7390, 'leaps': 5172, 'mortal': 5884, 'meg': 5651, 'potentially': 6800, 'playwright': 6691, 'jolly': 4901, 'auto': 757, 'natalie': 6000, 'grady': 3981, 'greengrass': 4022, 'bourne': 1157, 'stiles': 8529, 'strathairn': 8570, 'organization': 6305, 'courageous': 2143, 'hispanic': 4315, 'worthless': 9904, 'endure': 3056, 'wishing': 9843, 'dopey': 2763, 'species': 8356, 'stomach': 8544, 'motorcycle': 5901, 'informed': 4633, 'crawling': 2179, 'photograph': 6612, 'impressively': 4549, 'weather': 9719, 'yeti': 9960, 'leap': 5171, 'searched': 7821, 'evolved': 3197, 'meyers': 5709, 'fur': 3759, 'rates': 7152, 'fiend': 3466, 'ferry': 3446, 'fog': 3604, 'poem': 6712, 'crossing': 2238, 'manipulate': 5501, 'siege': 8091, 'announced': 512, 'http': 4414, 'www': 9942, '2009': 102, 'sammy': 7692, 'seats': 7828, 'stumbled': 8623, 'biker': 1002, 'boogie': 1120, 'bastard': 864, 'inheritance': 4643, 'incest': 4565, 'hatred': 4189, 'catchy': 1482, 'finney': 3514, 'capote': 1406, 'edwards': 2952, 'profession': 6926, 'olivier': 6257, 'spain': 8343, 'fascism': 3385, 'sue': 8679, 'applaud': 574, 'silliness': 8105, 'lighthearted': 5254, 'warmth': 9661, 'sol': 8274, '21st': 106, 'favours': 3409, 'copied': 2091, 'penelope': 6533, 'credited': 2198, 'nail': 5980, 'alicia': 391, 'goth': 3964, 'endured': 3057, 'cbc': 1496, 'victoria': 9531, 'hardships': 4158, 'healthy': 4214, 'represent': 7380, 'hamlet': 4117, 'midler': 5723, 'gibson': 3874, 'melancholy': 5655, 'dane': 2329, 'kenneth': 4986, 'branagh': 1182, 'discussions': 2674, 'avoids': 768, 'demonstrate': 2477, 'grass': 4000, 'bubba': 1268, 'benoit': 962, 'opponents': 6286, 'crashing': 2174, 'nailed': 5981, 'tossed': 9137, 'injured': 4648, 'pin': 6644, 'wwe': 9938, 'regal': 7271, 'celebrate': 1502, 'cena': 1514, 'berserk': 972, 'rvd': 7653, 'brock': 1241, 'temple': 8907, 'frog': 3728, 'booker': 1122, 'punches': 7025, 'punched': 7024, 'monitor': 5841, 'triple': 9248, 'entered': 3093, 'opportunities': 6287, 'mcmahon': 5619, 'michaels': 5715, 'official': 6239, 'victory': 9533, 'ropes': 7597, 'planted': 6677, 'icon': 4465, 'recover': 7237, 'winners': 9828, 'undertaker': 9353, 'taker': 8831, 'disabled': 2645, 'prone': 6962, 'choke': 1644, 'blanks': 1046, 'mount': 5902, 'rivals': 7527, 'dresses': 2817, 'complained': 1912, 'phrases': 6619, 'coolest': 2086, 'anchor': 471, 'werewolves': 9746, 'blaxploitation': 1050, 'misunderstandings': 5800, 'distorted': 2703, 'spaces': 8340, 'diverse': 2719, 'knightley': 5043, 'beckham': 902, 'incidental': 4569, 'evolution': 3195, 'kathryn': 4965, 'afghanistan': 315, 'surgeon': 8743, 'casually': 1477, 'sniper': 8251, 'navy': 6013, 'proudly': 6987, 'emmanuelle': 3020, 'wong': 9875, 'transformation': 9187, 'politician': 6739, 'programme': 6936, 'dame': 2314, 'strikingly': 8590, 'confident': 1966, 'disappearance': 2648, 'obsessive': 6199, 'vulnerable': 9614, 'route': 7612, '1990s': 79, 'zack': 9980, 'marine': 5524, 'quinn': 7077, 'attended': 722, 'jacques': 4822, 'carla': 1438, 'request': 7389, 'fulfilling': 3744, 'remainder': 7326, 'uniformly': 9380, 'enhances': 3076, 'kerry': 4991, 'labour': 5082, 'spielberg': 8378, 'serials': 7914, 'battles': 875, 'lung': 5418, 'muni': 5932, 'farmer': 3377, 'slave': 8191, 'rainer': 7107, 'kindness': 5022, 'feast': 3416, 'elder': 2977, 'goofs': 3953, 'sugar': 8686, 'crowds': 2244, '1973': 60, 'dismal': 2687, 'mins': 5762, 'unappealing': 9321, 'nicky': 6080, 'blowing': 1079, 'crispin': 2218, 'geek': 3822, 'landmark': 5104, 'sealed': 7818, 'syndrome': 8815, 'interior': 4723, 'crouching': 2239, 'conan': 1940, 'hallmark': 4113, 'shout': 8061, 'anguish': 495, 'pokemon': 6725, 'ash': 654, 'endlessly': 3054, 'affections': 311, 'jewel': 4870, 'suspicions': 8775, 'marking': 5534, 'disdain': 2675, 'neutral': 6061, 'nomination': 6112, 'artists': 648, 'critique': 2229, 'mystical': 5973, 'chant': 1555, 'outbursts': 6334, 'atrocities': 707, 'starving': 8478, 'destroys': 2558, 'twentieth': 9291, 'hurting': 4449, 'wwf': 9939, 'wiped': 9835, 'garnered': 3809, 'ang': 482, 'stud': 8611, 'unwilling': 9426, 'rizzo': 7531, 'infested': 4622, 'client': 1747, 'graduate': 3980, 'vividly': 9592, 'pervasive': 6580, 'sylvia': 8806, 'hughes': 4421, 'restoration': 7425, '35': 121, 'archive': 600, 'controversy': 2059, 'polanski': 6727, 'rents': 7362, 'parisian': 6448, 'dread': 2805, 'excels': 3212, 'nuclear': 6166, 'dyke': 2892, 'cockney': 1798, 'cape': 1402, 'gena': 3828, 'rowlands': 7616, 'misadventures': 5774, 'counting': 2131, 'seriousness': 7918, 'tooth': 9121, 'significantly': 8101, 'masks': 5564, 'wrist': 9923, 'considers': 2007, 'disguise': 2678, 'cinemas': 1687, 'insanely': 4659, 'swing': 8793, 'razor': 7167, 'behaving': 927, 'consistent': 2009, 'harriet': 4168, 'legion': 5194, 'troops': 9257, 'seasoned': 7825, 'layered': 5157, 'dates': 2359, 'trials': 9232, 'boundaries': 1155, 'fires': 3522, 'companions': 1892, 'seinfeld': 7865, 'edith': 2943, 'georges': 3852, 'bathing': 868, 'projection': 6947, 'chavez': 1586, 'deathtrap': 2390, 'sleuth': 8203, 'reeve': 7254, 'cannon': 1393, 'seductive': 7847, 'wholly': 9784, 'reviewing': 7463, 'czech': 2300, 'locate': 5328, 'hines': 4303, 'ins': 4657, 'motivation': 5897, 'hans': 4140, 'psychopathic': 7009, 'shoved': 8063, 'sprinkled': 8421, 'aiming': 354, 'suspicious': 8776, 'smallville': 8227, 'lionel': 5290, 'bart': 851, 'blends': 1056, 'saves': 7732, 'stealth': 8498, '2nd': 115, 'fulfilled': 3743, 'christy': 1673, 'achievements': 218, 'communicate': 1884, 'therapist': 8975, 'fiona': 3516, 'elmer': 3002, 'piper': 6647, 'disgrace': 2677, 'induced': 4604, 'rohmer': 7565, 'fix': 3539, 'culkin': 2264, 'outfit': 6339, '1965': 51, 'canceled': 1382, 'disliked': 2686, 'fleming': 3564, 'henchmen': 4255, 'habit': 4094, 'brides': 1218, 'wholesome': 9783, 'lane': 5108, 'ingenious': 4637, 'chat': 1585, 'bites': 1024, 'connect': 1982, 'hayden': 4201, 'portman': 6767, 'heights': 4237, 'christina': 1669, 'wheelchair': 9761, 'apple': 576, 'artwork': 651, 'skirt': 8173, 'chen': 1610, 'pang': 6429, 'ruthless': 7652, 'ensure': 3091, 'activity': 235, 'reminding': 7343, 'knives': 5045, 'mundane': 5931, 'armstrong': 621, 'capitalize': 1405, 'bowl': 1160, 'byron': 1344, 'inherited': 4644, 'morals': 5867, 'lovingly': 5391, 'recreation': 7239, 'virtual': 9568, 'empire': 3030, 'followers': 3612, 'beatty': 895, 'drivers': 2831, 'backed': 801, 'alcohol': 379, 'sounding': 8327, 'carmen': 1441, 'chopping': 1652, 'cheat': 1592, 'ambition': 445, 'burn': 1307, 'enduring': 3058, 'defeated': 2426, 'fools': 3622, 'shameless': 7976, 'senator': 7879, 'communist': 1887, 'ronald': 7585, 'reagan': 7185, 'pronounced': 6963, 'baked': 817, 'affected': 308, 'placing': 6665, 'helpless': 4251, 'hunted': 4443, 'baddie': 809, 'mentally': 5677, 'unstable': 9417, 'grip': 4035, 'exorcist': 3245, 'arguing': 607, 'vamp': 9473, 'brat': 1187, 'torch': 9127, 'examine': 3205, 'nation': 6002, 'fiasco': 3459, 'capra': 1407, 'vein': 9501, 'purposes': 7037, 'purchase': 7031, 'prints': 6899, 'dire': 2631, 'scriptwriters': 7811, 'betrayed': 979, 'republic': 7386, 'prevents': 6877, 'dressler': 2819, 'roscoe': 7598, 'opposition': 6291, 'myrtle': 5967, 'errol': 3137, 'flynn': 3597, 'height': 4236, 'gable': 3772, 'harlow': 4164, 'anita': 506, 'snowy': 8258, 'fontaine': 3617, 'astaire': 692, 'gracie': 3977, 'billing': 1007, 'choreographer': 1657, 'gershwin': 3859, 'fishburne': 3530, 'fiery': 3468, 'peak': 6519, 'topics': 9124, 'homosexuality': 4356, 'noting': 6150, 'cleaned': 1732, 'survivor': 8763, 'justin': 4947, 'timberlake': 9058, 'spacey': 8341, 'administration': 268, 'approval': 590, 'cattle': 1488, 'speeches': 8363, 'celebrated': 1503, 'foch': 3598, 'colours': 1839, 'afterward': 325, 'laws': 5154, 'uptight': 9440, 'norton': 6133, 'differently': 2612, 'distinctive': 2701, 'flames': 3545, 'joker': 4897, 'oriental': 6307, 'fatale': 3395, 'ritchie': 7522, 'blew': 1059, 'invite': 4761, 'premises': 6848, 'independence': 4591, 'teaching': 8878, 'stink': 8535, 'optimistic': 6293, 'politicians': 6740, 'passive': 6483, 'winchester': 9817, '73': 139, 'representing': 7383, 'protest': 6984, 'growth': 4052, 'ghastly': 3865, 'confederate': 1962, 'potent': 6798, 'horn': 4381, 'liotta': 5292, 'jabba': 4814, 'observed': 6196, 'mcqueen': 5620, 'theodore': 8972, 'randall': 7125, 'bounty': 1156, 'kissing': 5033, 'timer': 9062, 'absorbed': 173, 'sgt': 7957, 'supermarket': 8723, 'lunch': 5416, 'freeze': 3710, 'polar': 6728, 'ghostly': 3868, 'beverly': 987, 'liu': 5309, 'enchanted': 3039, 'spoiled': 8397, 'der': 2516, 'gretchen': 4027, 'mol': 5828, 'bettie': 984, 'profits': 6932, 'haines': 4104, 'peggy': 6531, 'boone': 1125, 'unbelievably': 9326, 'tobe': 9083, 'hooper': 4368, 'spontaneous': 8403, 'derek': 2518, 'tarzan': 8858, 'kolchak': 5056, 'malevolent': 5481, 'harrowing': 4172, 'feinstone': 3432, 'patients': 6495, 'chemical': 1608, 'adaptations': 250, '1993': 82, 'silverstone': 8108, 'sacrificed': 7659, 'fairytale': 3347, 'cousin': 2149, 'plotting': 6706, 'stifler': 8528, 'paycheck': 6509, 'brien': 1224, 'traveling': 9211, 'wtc': 9934, 'floors': 3582, 'firefighters': 3520, 'witnessing': 9855, 'races': 7088, 'gladly': 3899, 'steer': 8504, 'abomination': 160, 'vastly': 9491, 'wanders': 9643, 'kindly': 5021, 'chained': 1532, 'joining': 4893, 'suited': 8697, 'sack': 7657, 'bathtub': 870, 'liking': 5267, 'qualify': 7057, 'scarier': 7752, 'martians': 5551, 'exploring': 3286, 'fulci': 3741, 'zombi': 9992, 'rips': 7515, 'mattei': 5590, 'sane': 7701, 'companies': 1890, 'screened': 7796, '1939': 29, 'backwoods': 806, 'dreaded': 2806, 'lange': 5110, 'braveheart': 1189, 'benjamin': 960, '18th': 16, 'locals': 5327, 'traditions': 9170, 'sigh': 8092, '1964': 50, '1975': 62, 'marathon': 5516, 'fanatics': 3366, 'inconsistencies': 4582, 'lowe': 5393, 'shrill': 8076, 'initially': 4646, 'voted': 9606, 'peruvian': 6579, 'careful': 1427, 'worrying': 9899, 'alarm': 372, 'decency': 2402, 'collar': 1819, 'aditya': 267, 'saif': 7672, 'anil': 496, 'commendable': 1869, 'cells': 1511, 'passengers': 6478, 'seducing': 7846, 'salem': 7678, 'exceedingly': 3208, 'corey': 2098, 'wings': 9825, 'natali': 5999, 'cypher': 2299, 'vincenzo': 9558, 'wrap': 9913, 'stairs': 8439, 'definition': 2437, 'rack': 7094, 'sale': 7677, 'neill': 6044, 'rukh': 7629, 'benet': 959, 'radiation': 7096, 'melt': 5662, 'overboard': 6358, 'punk': 7027, 'shin': 8019, 'employ': 3031, 'lurking': 5422, 'agents': 334, 'ninja': 6095, 'pose': 6776, 'supply': 8726, 'marquis': 5539, 'villa': 9551, 'redeem': 7244, 'sheridan': 8013, 'operatic': 6280, 'parsifal': 6456, 'stripped': 8594, 'choosing': 1649, 'wondrous': 9874, 'rear': 7203, 'emerge': 3015, 'weary': 9718, 'stroke': 8596, 'conception': 1947, 'breakthrough': 1199, 'paragraph': 6439, 'crack': 2162, 'orphanage': 6318, 'sales': 7679, 'hawn': 4200, 'sink': 8138, 'handicapped': 4125, 'protective': 6983, 'burial': 1304, 'reiser': 7289, 'determine': 2568, 'liberties': 5239, 'thrilling': 9025, 'safely': 7668, '1998': 87, 'sr': 8426, 'bagdad': 815, 'sabu': 7656, 'conrad': 1991, 'veidt': 9500, 'jaffar': 4824, 'technicolor': 8887, 'stairway': 8440, 'demographic': 2472, 'bruckheimer': 1258, 'miranda': 5771, 'mankind': 5504, 'maverick': 5601, 'replies': 7373, 'systems': 8818, 'cecil': 1499, 'demille': 2470, 'picnic': 6631, 'fishing': 3532, 'singles': 8135, 'sox': 8337, 'reply': 7374, 'wizard': 9859, 'swordplay': 8801, 'clyde': 1790, 'parties': 6466, 'muslim': 5953, 'rejects': 7292, 'mobile': 5813, 'turkish': 9280, 'danish': 2338, 'expressing': 3297, '70s': 138, 'anxious': 540, 'overshadowed': 6367, 'motivated': 5896, 'wet': 9753, 'tendency': 8914, 'otto': 6329, 'preminger': 6846, 'grossly': 4041, 'suitably': 8695, 'scalise': 7742, 'cracking': 2164, 'enforcer': 3063, 'philo': 6604, 'twitch': 9300, 'paths': 6492, 'seagal': 7816, 'contend': 2030, 'hangs': 4135, 'moe': 5827, 'niece': 6083, 'curly': 2277, 'geeky': 3824, 'sarandon': 7709, 'ostensibly': 6324, 'fearless': 3414, 'vigilante': 9548, 'incidentally': 4570, 'raging': 7101, 'venezuela': 9502, 'economy': 2932, 'cheer': 1600, 'blast': 1047, 'lanza': 5114, 'pavarotti': 6506, 'breathe': 1203, 'irrational': 4783, 'corrupted': 2116, 'inspector': 4674, 'boyle': 1171, 'leaders': 5165, 'gods': 3929, 'solidly': 8281, 'amber': 441, 'virtues': 9571, 'delicious': 2449, 'fatal': 3394, 'mason': 5565, 'emerges': 3016, 'formal': 3651, 'minnelli': 5759, 'zu': 9999, 'windows': 9820, 'sinking': 8139, 'dealer': 2381, 'pound': 6802, 'wendigo': 9738, 'standpoint': 8456, 'stance': 8450, '1935': 25, 'robbing': 7540, '1934': 24, 'rko': 7532, 'reached': 7172, 'dom': 2746, 'irving': 4789, 'tasks': 8860, 'eaten': 2923, 'smallest': 8226, 'toss': 9136, 'heap': 4215, 'tools': 9120, 'reminder': 7342, 'leadership': 5166, 'alain': 370, 'expresses': 3296, 'elvis': 3006, 'lions': 5291, 'tigers': 9053, 'dominate': 2748, 'mitchell': 5803, 'fury': 3765, 'aptly': 595, 'demonstrated': 2478, 'sour': 8331, 'sixth': 8157, 'passage': 6476, 'alba': 374, 'safe': 7667, 'transplant': 9198, 'inject': 4647, 'diamond': 2593, 'anticipation': 531, 'wits': 9856, 'fairbanks': 3343, 'gunga': 4081, 'din': 2626, 'progressively': 6944, 'combining': 1849, 'henderson': 4256, 'cody': 1802, 'drowning': 2841, 'secure': 7843, 'warden': 9654, 'videotape': 9536, 'chamber': 1540, 'townspeople': 9156, 'crazed': 2180, 'links': 5288, 'unaware': 9323, 'committing': 1882, 'approaching': 587, 'thailand': 8947, 'tits': 9080, 'goat': 3926, 'chevy': 1617, 'shahid': 7965, 'amrita': 461, 'thieves': 8987, 'montrose': 5856, 'despicable': 2549, 'cunningham': 2271, 'mercilessly': 5684, 'torment': 9128, 'julian': 4928, 'unheard': 9377, 'gesture': 3860, 'stark': 8467, 'voiced': 9595, 'familiarity': 3360, 'inhabit': 4640, 'serbian': 7909, 'sid': 8084, 'attachment': 710, 'rabid': 7086, 'farm': 3376, 'attends': 724, 'intellectually': 4700, 'stimulating': 8534, 'vaguely': 9464, '1932': 22, 'swim': 8791, 'maureen': 5599, 'harilal': 4161, 'khanna': 4996, 'epitome': 3123, 'kamal': 4953, 'savalas': 7729, 'bloated': 1062, 'survival': 8758, 'youths': 9975, 'recognition': 7225, 'lukas': 5411, 'tourist': 9146, 'alligator': 407, 'inter': 4714, 'sofia': 8271, 'diaz': 2597, 'mccabe': 5610, 'shaky': 7971, 'mega': 5652, 'hardcore': 4153, 'noam': 6101, 'chomsky': 1645, 'chew': 1618, 'wherever': 9768, 'signature': 8097, 'slack': 8179, 'fighters': 3475, 'alley': 405, 'melbourne': 5656, 'posey': 6778, 'goldblum': 3938, 'enchanting': 3040, 'sweeping': 8788, '500': 129, 'ambiguity': 443, 'slavery': 8192, 'depictions': 2508, 'jake': 4827, 'herbert': 4260, 'chooses': 1648, 'heels': 4235, 'arty': 652, 'informer': 4634, 'morally': 5866, 'uneducated': 9360, 'dogma': 2738, 'carlisle': 1439, 'tho': 9001, 'lastly': 5127, 'screamed': 7792, 'languages': 5112, 'cancelled': 1383, 'listener': 5300, 'permanent': 6564, 'toni': 9111, 'collette': 1828, 'bald': 823, 'audrey': 740, 'marked': 5531, 'inexperienced': 4614, 'boyfriends': 1169, 'respectful': 7414, 'collapse': 1817, 'separately': 7903, 'achievement': 217, 'airing': 360, 'heroism': 4270, 'finnish': 3515, 'humane': 4427, 'confrontation': 1974, 'yell': 9952, 'supportive': 8731, 'gamut': 3789, 'evoke': 3193, 'domestic': 2747, 'unrelated': 9413, 'climbing': 1756, 'sorrow': 8317, 'forrest': 3659, 'hippies': 4309, 'penis': 6534, 'farewell': 3375, 'literature': 5307, 'slept': 8202, 'cards': 1422, 'mole': 5830, 'chapter': 1559, 'hi': 4278, 'protecting': 6981, 'poster': 6794, 'bills': 1009, 'waterfront': 9693, 'dani': 2335, 'hunger': 4439, 'endeavor': 3049, 'cliched': 1741, 'baddies': 810, 'frequent': 3713, '26': 112, 'hk': 4326, 'monumental': 5858, 'waited': 9618, 'incompetence': 4579, 'saints': 7675, 'minus': 5763, 'astonishingly': 695, 'displaying': 2693, 'famed': 3358, 'brooke': 1247, 'dental': 2490, 'smoothly': 8242, 'wakes': 9623, 'um': 9316, 'senior': 7883, 'devious': 2584, 'fuzzy': 3769, 'progressive': 6943, 'confined': 1967, 'breakfast': 1196, 'rave': 7161, 'kinski': 5029, 'kaufman': 4968, 'chainsaw': 1533, 'allegedly': 401, 'previews': 6879, 'theo': 8971, 'robertson': 7545, 'rejection': 7291, '21': 105, 'muppet': 5933, 'petiot': 6589, 'cloak': 1762, 'crooked': 2231, 'concentration': 1945, 'wartime': 9673, 'resurrection': 7435, 'jew': 4869, 'contestants': 2034, 'colman': 1830, 'firmly': 3525, 'jose': 4906, 'babes': 791, 'miike': 5728, 'gundam': 4078, 'pocket': 6710, 'net': 6057, 'devils': 2583, 'clooney': 1766, 'adaption': 252, 'antwone': 538, 'therapy': 8976, 'hmmm': 4328, 'marines': 5525, 'dinosaur': 2629, 'locke': 5333, 'showtime': 8073, 'fable': 3317, 'patch': 6488, 'inhabitants': 4641, 'marty': 5554, 'opponent': 6285, 'attacking': 713, 'ceiling': 1501, 'pleasing': 6696, 'partial': 6459, 'missions': 5793, 'timon': 9065, 'pumbaa': 7021, 'simba': 8109, 'perspectives': 6576, 'woke': 9861, 'lola': 5341, 'deliciously': 2450, 'items': 4808, 'elliott': 3000, 'wax': 9700, 'wolves': 9863, 'surround': 8754, 'firm': 3524, 'shockingly': 8034, 'separated': 7902, 'cartoonish': 1459, 'surfers': 8741, 'hum': 4425, 'assignment': 678, 'fassbinder': 3390, 'accounts': 208, 'observe': 6195, 'socially': 8266, 'lang': 5109, 'mistress': 5798, 'dose': 2766, 'pad': 6394, 'youngest': 9968, 'yells': 9955, 'lent': 5209, 'sights': 8094, 'collector': 1826, 'scandal': 7744, 'monologues': 5847, 'mischievous': 5776, 'nearest': 6020, 'rhymes': 7478, 'uninspiring': 9385, 'breathless': 1205, 'cracker': 2163, 'naughty': 6011, 'rounds': 7609, 'nada': 5979, 'schlock': 7767, 'corbett': 2095, 'division': 2722, 'crown': 2245, 'compulsive': 1936, 'modeling': 5820, 'zoo': 9996, 'dwight': 2889, 'exaggeration': 3203, 'ella': 2997, 'raines': 7108, 'fritz': 3727, 'chikatilo': 1627, 'kansas': 4955, 'biko': 1004, 'crow': 2241, 'chaotic': 1557, 'bud': 1273, 'swiss': 8795, 'peril': 6558, 'finch': 3502, 'altman': 429, 'usage': 9446, 'bitch': 1021, 'ham': 4115, 'leary': 5177, 'belt': 951, 'darren': 2352, 'motivations': 5898, 'whats': 9758, 'surfing': 8742, 'conveyed': 2070, 'inclined': 4572, 'temporary': 8908, 'hiring': 4313, 'failures': 3340, 'improvised': 4555, 'juliette': 4931, 'aroused': 626, 'thereafter': 8978, 'nephew': 6049, 'vanishing': 9480, 'hysterically': 4462, 'jaw': 4842, 'dropping': 2836, 'monica': 5840, 'avenge': 762, 'titular': 9081, 'disco': 2664, 'skipping': 8172, 'meantime': 5632, 'suite': 8696, 'coincidences': 1810, 'ocean': 6216, 'jeep': 4852, 'masked': 5563, 'affleck': 313, 'throwaway': 9032, 'oshii': 6322, 'gardner': 3805, 'vera': 9505, 'graves': 4005, 'marvin': 5559, 'engineer': 3069, 'tickets': 9046, 'increasing': 4586, 'extremes': 3311, 'greg': 4023, 'preferably': 6838, 'noon': 6120, '01': 2, 'vice': 9526, 'versa': 9512, 'convent': 2062, 'bra': 1174, 'segal': 7862, 'insomnia': 4673, 'pixar': 6659, 'angst': 494, 'smuggling': 8244, 'stating': 8485, 'erik': 3131, 'marcel': 5518, 'phyllis': 6620, 'kent': 4988, 'coke': 1811, 'condemned': 1958, 'believer': 941, 'policies': 6733, 'samuel': 7693, 'virginia': 9566, 'chock': 1640, 'denis': 2484, 'exhilarating': 3237, 'implication': 4535, 'costner': 2121, 'keitel': 4979, 'timed': 9060, 'mcgavin': 5616, 'deeds': 2418, 'sopranos': 8313, 'cared': 1424, 'unnerving': 9406, 'mack': 5439, 'arise': 611, 'custody': 2287, 'puzzle': 7049, 'luc': 5401, 'dominic': 2750, 'connor': 1990, 'tucker': 9274, 'starship': 8471, '150': 12, 'fleet': 3562, 'counterpart': 2130, 'seberg': 7831, 'widower': 9799, 'nutty': 6180, 'jo': 4879, 'daphne': 2341, 'bullet': 1292, 'insists': 4672, 'sleeve': 8201, 'gunbuster': 4077, 'noriko': 6124, 'assembled': 675, 'confirmed': 1969, 'gripe': 4036, 'heroin': 4268, 'degrading': 2440, 'defies': 2430, 'pickford': 6628, 'mindset': 5748, 'capshaw': 1409, 'seattle': 7829, 'tokyo': 9093, 'psychopath': 7008, 'strained': 8564, 'lotr': 5376, 'deus': 2572, 'owe': 6374, 'illiterate': 4499, 'stretching': 8583, 'noticeable': 6147, 'sensation': 7884, 'applied': 577, 'midget': 5722, 'defy': 2439, 'ultimatum': 9314, 'stardust': 8462, 'han': 4121, 'construct': 2016, 'leia': 5197, 'ewoks': 3198, 'darth': 2353, 'skywalker': 8178, 'candle': 1387, 'anakin': 468, 'vehicles': 9499, 'wider': 9794, 'streep': 8574, 'flavia': 3554, 'medieval': 5643, 'jigsaw': 4875, 'contrasted': 2048, 'cher': 1611, 'lars': 5121, 'trier': 9241, 'anchors': 472, 'aweigh': 780, 'forties': 3663, 'benefits': 958, 'iturbi': 4811, 'athletic': 701, 'reasoning': 7207, 'bias': 991, 'goodman': 3949, 'auteur': 750, 'guinea': 4072, 'void': 9597, 'impersonation': 4533, 'overacting': 6354, 'nun': 6174, 'tool': 9117, 'pym': 7052, 'dorm': 2764, 'abound': 162, 'alter': 423, 'consist': 2008, 'transforms': 9191, 'yokai': 9963, 'disguised': 2679, 'drifter': 2823, 'madison': 5444, 'grinch': 4034, 'dodgy': 2734, 'gilliam': 3882, 'protection': 6982, 'shaolin': 7980, 'shearer': 7997, 'casino': 1466, 'takashi': 8828, 'prostitutes': 6977, 'orphan': 6317, 'blondell': 1070, 'reverend': 7456, 'thaw': 8956, 'christine': 1670, 'tomatoes': 9101, 'presidential': 6862, 'marketing': 5533, 'diver': 2718, 'tomato': 9100, 'correctness': 2113, 'rusty': 7650, 'modest': 5824, 'hooker': 4367, 'contestant': 2033, 'accomplish': 203, 'aiello': 350, 'grin': 4033, 'abigail': 154, 'ruth': 7651, 'werner': 9747, 'wu': 9936, 'stepmother': 8510, 'marisa': 5528, 'tomei': 9103, 'strung': 8608, 'internal': 4725, 'dragging': 2788, 'satanic': 7717, 'elected': 2980, 'kei': 4978, 'recurring': 7241, 'instruments': 4689, 'kali': 4951, 'nightmarish': 6089, 'macmurray': 5440, 'basil': 860, 'tramp': 9182, 'apologies': 560, 'headache': 4209, 'orleans': 6316, 'officials': 6241, 'neo': 6048, 'realist': 7191, 'neglected': 6038, 'akin': 365, 'jannings': 4834, 'evelyn': 3173, 'pows': 6811, 'chest': 1615, 'sensual': 7893, 'preach': 6822, 'aboard': 159, 'firode': 3526, 'ample': 460, 'napoleon': 5990, 'understandably': 9348, 'fashions': 3389, 'bonanza': 1109, 'neighbours': 6042, 'las': 5122, 'nolan': 6109, 'perky': 6562, 'registered': 7280, 'madsen': 5448, 'epics': 3119, 'raiders': 7104, 'ark': 614, 'sustained': 8778, 'concrete': 1957, 'toolbox': 9118, 'infidelity': 4623, 'foxes': 3679, 'communication': 1885, 'turtle': 9287, '1967': 53, 'insert': 4662, 'mo': 5811, 'supremacy': 8736, 'authors': 756, 'saturated': 7726, 'ninety': 6094, 'overtly': 6369, 'composition': 1929, 'sematary': 7876, 'watcher': 9686, 'studying': 8619, 'carell': 1430, 'oblivion': 6187, 'artistry': 647, 'shelly': 8008, 'gielgud': 3875, 'booze': 1130, 'florence': 3584, 'provocative': 6996, 'dietrich': 2608, 'pretends': 6872, 'raider': 7103, 'sunset': 8712, 'bench': 954, 'consumed': 2019, 'jews': 4874, 'holocaust': 4345, 'goo': 3945, 'ranma': 7135, 'compassionate': 1901, 'isabelle': 4792, 'cocktail': 1799, 'click': 1746, 'clunker': 1788, 'jodie': 4884, 'persuade': 6577, 'thereof': 8982, 'closure': 1775, 'behaves': 926, 'suggesting': 8689, 'del': 2443, 'regrets': 7282, 'krishna': 5066, 'coup': 2138, 'serbs': 7910, 'clumsily': 1786, 'suzanne': 8780, 'kinnear': 5028, 'invention': 4752, 'liner': 5282, 'snippets': 8253, 'waterfall': 9692, 'tin': 9067, 'compromise': 1935, 'demonicus': 2475, 'unsympathetic': 9421, 'sabrina': 7655, 'pets': 6590, 'bullock': 1294, 'visitor': 9582, 'zorro': 9998, 'delon': 2462, 'botched': 1144, 'davidson': 2365, 'substantial': 8651, 'mocking': 5816, 'dish': 2683, 'schwarzenegger': 7771, 'rescued': 7395, 'virtue': 9570, 'moonstruck': 5862, 'kinky': 5027, 'berenger': 966, 'wally': 9635, '1953': 43, 'mart': 5547, 'zealand': 9982, 'classified': 1723, 'soderbergh': 8270, 'oddball': 6219, 'centre': 1521, 'impending': 4532, 'percent': 6544, 'stumble': 8622, 'maximum': 5603, 'sites': 8151, 'pia': 6624, 'caretaker': 1432, 'competently': 1907, 'pirates': 6649, 'ebay': 2926, 'dolph': 2745, 'rupert': 7640, 'categories': 1483, 'neglect': 6037, 'port': 6763, 'transformations': 9188, 'sexes': 7948, 'hopper': 4379, 'longing': 5351, 'flower': 3588, 'gladiator': 3898, 'limbs': 5271, 'substitute': 8652, 'meryl': 5693, 'illustrates': 4505, 'lambs': 5097, 'transformers': 9190, 'distraught': 2708, 'bsg': 1265, 'caprica': 1408, 'collecting': 1823, 'discernible': 2662, 'grisly': 4038, 'meadows': 5622, 'shaggy': 7963, 'pulse': 7020, 'aunts': 743, 'denmark': 2486, 'indifferent': 4601, 'dahmer': 2306, 'granger': 3994, 'gruner': 4056, 'nemesis': 6047, 'denial': 2482, 'sonny': 8302, 'postman': 6796, 'gino': 3887, 'giovanna': 3888, 'employment': 3035, 'ossessione': 6323, 'monastery': 5837, 'wendy': 9740, 'shah': 7964, 'terrain': 8923, 'che': 1587, 'bolivia': 1103, 'toro': 9131, 'cringed': 2213, 'tracey': 9161, 'visitors': 9583, 'acquired': 226, 'generate': 3833, 'calibre': 1357, 'zoe': 9991, 'doolittle': 2758, 'gandolfini': 3791, 'muslims': 5954, 'unwittingly': 9427, 'token': 9092, 'askey': 662, 'keanu': 4971, 'kornbluth': 5061, 'mabel': 5432, '1920s': 18, 'recruits': 7240, 'herman': 4264, 'robbers': 7537, 'housing': 4409, 'zodiac': 9990, 'lommel': 5342, 'cowboys': 2160, 'detached': 2561, 'thankless': 8952, 'needing': 6031, 'censorship': 1516, 'cheryl': 1613, 'waqt': 9651, 'fundamental': 3751, 'northam': 6131, 'flute': 3594, 'obscene': 6190, 'artemisia': 641, 'tassi': 8861, 'manufactured': 5513, 'ogre': 6245, 'panahi': 6428, 'offside': 6243, '98': 147, 'irresistible': 4785, 'gabby': 3771, 'payne': 6511, 'scanners': 7745, 'cyborgs': 2295, 'bombing': 1107, 'insects': 4661, 'outdoor': 6337, 'predecessor': 6830, 'zentropa': 9985, 'europa': 3165, 'andrei': 478, 'tarkovsky': 8857, 'wodehouse': 9860, 'merry': 5692, 'cunning': 2270, 'impose': 4542, 'opener': 6274, 'officially': 6240, 'yuma': 9979, 'unnecessarily': 9404, 'grandpa': 3992, 'depardieu': 2498, 'flew': 3568, 'eagle': 2901, 'tintin': 9068, 'sickness': 8083, 'mpaa': 5918, 'arrest': 630, 'chandler': 1547, 'lundgren': 5417, 'stalks': 8447, 'succession': 8670, 'sho': 8029, 'gackt': 3774, 'troopers': 9256, 'fenton': 3445, 'naschy': 5996, 'floriane': 3585, 'animators': 503, 'cherish': 1612, 'parsons': 6457, 'quincy': 7076, 'gram': 3986, 'je': 4846, 'aime': 352, 'veronica': 9510, '250': 111, 'gypo': 4091, 'bfg': 990, 'brendan': 1211, 'gung': 4080, 'kriemhild': 5064, 'hagen': 4103, 'visconti': 9574, 'frantic': 3697, 'output': 6345, 'pornography': 6762, 'descends': 2522, 'indulge': 4606, 'hare': 4160, 'sought': 8322, 'bogdanovich': 1098, 'interplay': 4728, 'seventh': 7940, 'attendant': 721, 'mockumentary': 5817, 'gamera': 3787, 'lamarr': 5096, 'pedro': 6527, 'nacho': 5978, 'anton': 533, 'newcombe': 6066, 'sayuri': 7740, 'steamy': 8501, 'aaron': 149, 'gap': 3797, 'battlestar': 876, 'galactica': 3782, 'annoyance': 514, 'amuse': 462, 'disappoints': 2656, 'ustinov': 9455, 'trendy': 9229, 'highway': 4291, 'yikes': 9961, 'mordrid': 5871, 'denver': 2492, 'harron': 4171, 'sammo': 7691, 'angelo': 487, 'cristina': 2219, 'binoche': 1013, 'ada': 245, 'actuality': 242, 'spray': 8416, 'alliance': 406, 'skinned': 8169, 'bounce': 1153, 'excessively': 3220, 'playful': 6688, 'corridors': 2114, 'wan': 9640, 'admirably': 270, 'fiancée': 3458, 'trish': 9249, 'hobgoblins': 4330, 'schneider': 7768, 'fated': 3397, '1943': 34, 'aircraft': 358, 'abu': 178, 'gospel': 3962, 'fetish': 3451, 'rao': 7138, 'btk': 1266, 'krueger': 5068, 'guevara': 4068, 'dross': 2838, 'stakes': 8442, 'iowa': 4769, 'sissy': 8144, 'tucci': 9273, 'burakov': 1303, 'thai': 8946, 'amin': 453, 'beetle': 913, 'minion': 5756, 'pasteur': 6486, 'joys': 4913, 'govinda': 3970, 'prem': 6843, 'randolph': 7126, 'saxon': 7736, 'delia': 2445, 'achilles': 221, 'hartnett': 4178, 'hark': 4162, 'candles': 1388, 'mj': 5810, 'edmund': 2947, 'wentworth': 9742, 'togar': 9089, 'barman': 844, 'puzzling': 7051, 'malta': 5484, 'protocol': 6985, 'flemming': 3565, 'nutshell': 6179, 'ahmad': 346, 'vinnie': 9559, 'dreyfuss': 2821, 'bloodshed': 1074, 'kells': 4982, 'sheila': 8004, 'watered': 9691, 'dyer': 2890, 'salman': 7682, 'gravity': 4007, 'blaise': 1038, 'scarecrows': 7748, 'icons': 4467, '64': 134, 'beckinsale': 903, 'conroy': 1992, 'pasolini': 6473, 'gadget': 3775, 'jed': 4850, 'arjun': 613, 'kabei': 4950, 'vivah': 9589, 'astronauts': 697, 'slackers': 8180, 'giamatti': 3871, 'pinjar': 6645, 'depalma': 2497, 'ae': 303, 'palermo': 6419, 'lensman': 5208, 'hackenstein': 4096, 'azumi': 789, 'iris': 4777, 'tolstoy': 9098}


BoW train dimension
[[0 0 0 ... 0 0 0]
 [0 0 0 ... 0 0 0]
 [0 0 0 ... 0 0 0]
 ...
 [0 0 0 ... 0 0 0]
 [0 0 0 ... 0 0 0]
 [0 0 0 ... 0 0 0]]
In [12]:
# Look at the shape of the obtained array
print("Shape of bow_train_reduced_vectors")
print(bow_train_splt.shape)
Shape of bow_train_reduced_vectors
(10000, 10000)
In [13]:
# Transform the validation data
vectorizer_val_splt = CountVectorizer(max_features=10000)
bow_val_splt = vectorizer_val_splt.fit_transform(val_texts)
val_splt_features_names = vectorizer_val_splt.get_feature_names()

print("\n\nTrain reduced features names")
print(val_splt_features_names)

print("\n\nVocabulary")
print(vectorizer_val_splt.vocabulary_)

bow_val_splt = bow_val_splt.toarray()
print("\n\nBow train reduced vectors")
print(bow_val_splt)

print("\n\nBoW validation shape")
print(bow_val_splt.shape)

Train reduced features names
['00', '000', '01', '10', '100', '101', '11', '11th', '12', '13', '13th', '14', '15', '16', '17', '17th', '18', '1890', '1894', '19', '1912', '1915', '1917', '1920', '1920s', '1922', '1928', '1929', '1930', '1930s', '1933', '1934', '1935', '1936', '1939', '1940', '1940s', '1942', '1943', '1944', '1945', '1946', '1948', '1949', '1950', '1950s', '1951', '1952', '1953', '1954', '1955', '1956', '1958', '1959', '1960', '1960s', '1961', '1962', '1965', '1966', '1967', '1968', '1969', '1970', '1970s', '1971', '1972', '1973', '1974', '1975', '1976', '1977', '1978', '1979', '1980', '1980s', '1981', '1982', '1983', '1984', '1985', '1986', '1987', '1988', '1989', '1990', '1990s', '1991', '1992', '1993', '1994', '1995', '1996', '1997', '1998', '1999', '19th', '1st', '20', '200', '2000', '2001', '2002', '2003', '2004', '2005', '2006', '2007', '2008', '20s', '20th', '21', '21st', '22', '23', '24', '25', '27', '28', '2d', '2nd', '30', '300', '3000', '30s', '31', '345', '35', '3d', '3rd', '40', '40s', '43', '45', '48', '50', '500', '50s', '60', '60s', '63', '66', '69', '6th', '70', '70s', '73', '75', '80', '80s', '85', '86', '90', '90s', '95', '97', '98', '99', 'aardman', 'aaron', 'abandon', 'abandoned', 'abby', 'abc', 'abhorrent', 'abilities', 'ability', 'able', 'aboard', 'aborigine', 'aborigines', 'abound', 'about', 'above', 'abraham', 'abrupt', 'abruptly', 'absence', 'absent', 'absolute', 'absolutely', 'absorbed', 'absorbing', 'abstract', 'absurd', 'absurdity', 'absurdly', 'abuse', 'abused', 'abysmal', 'academy', 'accent', 'accents', 'accept', 'acceptable', 'acceptance', 'accepted', 'accepting', 'accepts', 'access', 'accident', 'accidentally', 'acclaimed', 'accompanied', 'accompanying', 'accomplished', 'accomplishment', 'according', 'account', 'accounts', 'accuracy', 'accurate', 'accused', 'ace', 'achieve', 'achieved', 'achievement', 'achieves', 'achieving', 'acid', 'acknowledge', 'acquaintances', 'acquired', 'across', 'act', 'acted', 'acting', 'action', 'actions', 'active', 'activist', 'activities', 'activity', 'actor', 'actors', 'actress', 'actresses', 'acts', 'actual', 'actuality', 'actually', 'ad', 'adam', 'adams', 'adaptation', 'adaptations', 'adapted', 'adaption', 'add', 'added', 'addicted', 'addiction', 'adding', 'addition', 'additional', 'additionally', 'address', 'addressed', 'addresses', 'addressing', 'adds', 'adeline', 'adequate', 'admirable', 'admirably', 'admiration', 'admire', 'admired', 'admirer', 'admirers', 'admit', 'admits', 'admitted', 'admittedly', 'adolescent', 'adopt', 'adopted', 'adorable', 'adore', 'adored', 'adrian', 'adult', 'adulterous', 'adultery', 'adulthood', 'adults', 'advance', 'advanced', 'advances', 'advantage', 'adventure', 'adventures', 'adversity', 'advertised', 'advertisement', 'advertising', 'advice', 'advise', 'advised', 'adviser', 'advocate', 'aesthetic', 'aesthetically', 'affair', 'affairs', 'affect', 'affected', 'affecting', 'affection', 'affects', 'affinity', 'affirmative', 'affleck', 'afflicted', 'affluent', 'afford', 'aforementioned', 'afraid', 'africa', 'african', 'after', 'aftermath', 'afternoon', 'afterwards', 'again', 'against', 'agatha', 'age', 'aged', 'agency', 'agenda', 'agent', 'agents', 'ages', 'aggressive', 'aging', 'ago', 'agony', 'agree', 'agreed', 'agrees', 'ah', 'ahab', 'ahead', 'aid', 'aided', 'aids', 'aiello', 'aim', 'aimed', 'aiming', 'aimless', 'ain', 'air', 'aircraft', 'aired', 'airing', 'airplane', 'airport', 'aisle', 'ajax', 'ajay', 'aka', 'akin', 'akshay', 'al', 'ala', 'alan', 'alas', 'alba', 'albeit', 'albert', 'album', 'albums', 'alcohol', 'alec', 'alekos', 'alert', 'alex', 'alexander', 'alexis', 'alfred', 'ali', 'alibi', 'alice', 'alicia', 'alien', 'alienation', 'alienator', 'aliens', 'alike', 'alimony', 'alison', 'alive', 'all', 'allan', 'alleged', 'allegory', 'allen', 'alley', 'alliance', 'allow', 'allowed', 'allowing', 'allows', 'allure', 'allusions', 'ally', 'allyson', 'almost', 'alok', 'alone', 'along', 'alongside', 'alot', 'alpha', 'already', 'alright', 'also', 'alter', 'altering', 'alternate', 'alternately', 'alternates', 'alternating', 'alternative', 'although', 'altman', 'altogether', 'alvin', 'always', 'am', 'amanda', 'amateur', 'amateurish', 'amazed', 'amazing', 'amazingly', 'amazon', 'ambiance', 'ambiguity', 'ambiguous', 'ambition', 'ambitious', 'america', 'american', 'americans', 'amiable', 'amid', 'amidst', 'amitabh', 'amnesia', 'amok', 'among', 'amongst', 'amoral', 'amos', 'amount', 'amounts', 'amphibulos', 'ample', 'amrita', 'amsterdam', 'amuse', 'amused', 'amusement', 'amusing', 'amusingly', 'amy', 'an', 'anal', 'analog', 'analogy', 'analysis', 'analyze', 'anarene', 'anastasia', 'anchor', 'anchored', 'anchorman', 'ancient', 'and', 'anderson', 'andre', 'andrea', 'andreeff', 'andrew', 'andrews', 'android', 'andy', 'angel', 'angela', 'angeles', 'angelina', 'angels', 'anger', 'angered', 'angie', 'angle', 'angles', 'anglo', 'angry', 'angst', 'anguish', 'anguished', 'anil', 'animal', 'animals', 'animated', 'animation', 'anime', 'aniston', 'anita', 'ann', 'anna', 'annamarie', 'anne', 'annie', 'announced', 'announcement', 'announcer', 'announces', 'annoyance', 'annoyed', 'annoying', 'annoyingly', 'annoys', 'annual', 'anonymous', 'another', 'answer', 'answered', 'answers', 'antagonist', 'anthology', 'anthony', 'anthropologist', 'anti', 'anticipated', 'anticipation', 'antics', 'antiques', 'anton', 'antonietta', 'antonio', 'antonioni', 'antwone', 'anupam', 'anxiety', 'anxious', 'any', 'anybody', 'anyhow', 'anymore', 'anyone', 'anything', 'anytime', 'anyway', 'anyways', 'anywhere', 'apart', 'apartment', 'apathetic', 'apathy', 'ape', 'apes', 'apocalypse', 'apocalyptic', 'apologies', 'apologize', 'appalled', 'appalling', 'appallingly', 'apparent', 'apparently', 'appeal', 'appealing', 'appeals', 'appear', 'appearance', 'appearances', 'appeared', 'appearing', 'appears', 'applaud', 'apple', 'applied', 'appreciate', 'appreciated', 'appreciating', 'appreciation', 'approach', 'approaches', 'approaching', 'appropriate', 'appropriately', 'approval', 'april', 'apt', 'arab', 'aragorn', 'arc', 'archaeological', 'archer', 'architect', 'architecture', 'arcs', 'ardala', 'are', 'area', 'areas', 'aren', 'arguably', 'argue', 'argued', 'argument', 'arguments', 'ariel', 'aristocrats', 'arkin', 'arly', 'arm', 'armed', 'armies', 'armor', 'arms', 'army', 'arnold', 'around', 'arquette', 'arranged', 'arrangement', 'array', 'arrested', 'arrival', 'arrive', 'arrived', 'arrives', 'arrogance', 'arrogant', 'arrow', 'arrows', 'art', 'artemisia', 'arthur', 'articulate', 'artificial', 'artificially', 'artist', 'artistic', 'artists', 'arts', 'artsy', 'artwork', 'arty', 'as', 'ash', 'ashamed', 'ashes', 'ashraf', 'asia', 'asian', 'aside', 'ask', 'asked', 'asking', 'asks', 'asleep', 'aspect', 'aspects', 'aspires', 'aspiring', 'ass', 'assassin', 'assassinate', 'assassination', 'assault', 'assed', 'assembled', 'assertion', 'assessment', 'asset', 'assets', 'assigned', 'assignment', 'assist', 'assistance', 'assistant', 'assistants', 'associate', 'associated', 'associates', 'association', 'assortment', 'assume', 'assumed', 'assuming', 'assumption', 'assumptions', 'assurance', 'assure', 'assured', 'assures', 'astaire', 'astonished', 'astonishingly', 'astounding', 'astoundingly', 'astro', 'astronaut', 'astronauts', 'astute', 'asylum', 'at', 'atari', 'atheists', 'athena', 'athletic', 'atlantic', 'atmosphere', 'atmospheric', 'atrocious', 'atrocity', 'attached', 'attachment', 'attack', 'attacked', 'attacking', 'attacks', 'attempt', 'attempted', 'attempting', 'attempts', 'attenborough', 'attend', 'attendant', 'attending', 'attention', 'attitude', 'attitudes', 'attorney', 'attract', 'attracted', 'attraction', 'attractive', 'attributes', 'atwill', 'atypical', 'audiard', 'audience', 'audiences', 'audio', 'auditioning', 'audrey', 'august', 'augusta', 'augustus', 'aunt', 'auntie', 'aura', 'aussie', 'austen', 'australia', 'australian', 'authentic', 'authenticity', 'author', 'authorities', 'authority', 'autistic', 'auto', 'autobiography', 'automatically', 'automobiles', 'available', 'avenger', 'average', 'avid', 'aviv', 'avoid', 'avoided', 'avoiding', 'avoids', 'awaiting', 'awake', 'awakening', 'award', 'awarded', 'awards', 'aware', 'away', 'awe', 'awesome', 'awful', 'awfully', 'awhile', 'awkward', 'awkwardly', 'ax', 'axe', 'azaria', 'ba', 'babe', 'babes', 'baby', 'bacall', 'bach', 'bachelor', 'back', 'backbone', 'backdrop', 'backdrops', 'background', 'backgrounds', 'backs', 'backstage', 'backwards', 'bacon', 'bad', 'baddie', 'baddies', 'badly', 'badness', 'bafta', 'bag', 'bait', 'bake', 'baked', 'baker', 'bakshi', 'balance', 'baldwin', 'ball', 'ballroom', 'balls', 'baloo', 'bamboo', 'banal', 'banality', 'band', 'bandit', 'bandits', 'bands', 'bandwagon', 'bang', 'bank', 'banned', 'bannister', 'banter', 'bar', 'barbara', 'barbarian', 'barbarians', 'barbie', 'barbra', 'bard', 'bare', 'barek', 'barely', 'bargain', 'baritone', 'barker', 'barn', 'barrage', 'barren', 'barrier', 'barry', 'barrymore', 'bars', 'bartender', 'barton', 'base', 'baseball', 'based', 'basement', 'bases', 'bashing', 'basic', 'basically', 'basics', 'basil', 'basinger', 'basis', 'basketball', 'bass', 'bassett', 'bat', 'batch', 'bates', 'bath', 'bathing', 'bathroom', 'batman', 'batmobile', 'bats', 'battle', 'battlefield', 'battles', 'battlestar', 'battling', 'bauer', 'bay', 'bbc', 'bc', 'be', 'beach', 'beaches', 'beales', 'bean', 'beans', 'bear', 'bearable', 'beard', 'bearing', 'bears', 'beast', 'beat', 'beaten', 'beating', 'beatles', 'beats', 'beatty', 'beau', 'beautiful', 'beautifully', 'beauty', 'beaver', 'became', 'because', 'beckinsale', 'becky', 'become', 'becomes', 'becoming', 'bed', 'bedroom', 'beds', 'beef', 'been', 'beer', 'beers', 'beery', 'before', 'befriend', 'befriends', 'beg', 'began', 'beggars', 'begged', 'begging', 'begin', 'beginners', 'beginning', 'begins', 'begs', 'begun', 'behave', 'behaved', 'behaves', 'behaving', 'behavior', 'behaviors', 'behaviour', 'behind', 'behold', 'behr', 'being', 'beings', 'beirut', 'bela', 'belasco', 'belief', 'beliefs', 'believable', 'believe', 'believed', 'believer', 'believes', 'believing', 'bell', 'belle', 'bells', 'belly', 'belong', 'belonged', 'belongs', 'beloved', 'below', 'belt', 'belushi', 'belzer', 'ben', 'bend', 'beneath', 'benefit', 'benefits', 'benign', 'benjamin', 'bennett', 'benny', 'bent', 'beowulf', 'berenger', 'bergman', 'berkeley', 'berkowitz', 'berlin', 'bernie', 'bernsen', 'berserkers', 'beside', 'besides', 'best', 'bestiality', 'bet', 'bete', 'beth', 'bethany', 'betrayal', 'betrayed', 'betrays', 'bets', 'bette', 'better', 'bettie', 'betty', 'between', 'beverly', 'beware', 'bewildered', 'beyond', 'bhandarkar', 'biased', 'bible', 'biblical', 'bickering', 'bicycle', 'big', 'bigfoot', 'bigger', 'biggest', 'bike', 'biker', 'bikini', 'biko', 'bilge', 'bill', 'billboards', 'billed', 'billie', 'billing', 'billion', 'billy', 'bimbo', 'bin', 'binder', 'bio', 'biography', 'biopic', 'bipolar', 'bird', 'birds', 'birth', 'birthday', 'bit', 'bitch', 'bitchy', 'bite', 'bites', 'bits', 'bitter', 'biz', 'bizarre', 'black', 'blackie', 'blackmail', 'blacks', 'blade', 'blah', 'blair', 'blaise', 'blake', 'blame', 'blamed', 'bland', 'blank', 'blast', 'blatant', 'blatantly', 'blazing', 'bleak', 'bleed', 'bleeding', 'blend', 'blending', 'blends', 'bless', 'blessed', 'blew', 'blind', 'blinded', 'blink', 'blob', 'block', 'blockbuster', 'blockbusters', 'blond', 'blonde', 'blondes', 'blood', 'blooded', 'bloodless', 'bloodthirsty', 'bloody', 'bloom', 'blow', 'blowing', 'blown', 'blows', 'blue', 'blues', 'blunt', 'blur', 'bo', 'boar', 'board', 'boarding', 'boards', 'boast', 'boasts', 'boat', 'bob', 'bobby', 'bodies', 'body', 'bodyguard', 'boesman', 'bogart', 'bogey', 'boggling', 'bogus', 'boiled', 'bolan', 'bold', 'boll', 'bollywood', 'bomb', 'bombing', 'bombs', 'bon', 'bonanza', 'bond', 'bonds', 'bone', 'bones', 'bonnie', 'bonus', 'boo', 'boobs', 'boogeyman', 'book', 'books', 'boom', 'boost', 'boot', 'booth', 'boothe', 'boots', 'bops', 'border', 'bore', 'bored', 'boredom', 'boring', 'boris', 'born', 'borrowed', 'borrows', 'boss', 'bosses', 'boston', 'both', 'bother', 'bothered', 'bothering', 'bothers', 'bottle', 'bottom', 'bottoms', 'bought', 'bouncy', 'bound', 'boundaries', 'bounty', 'bout', 'bow', 'bowie', 'bowl', 'box', 'boxer', 'boxers', 'boxes', 'boxing', 'boy', 'boyer', 'boyfriend', 'boyle', 'boys', 'br', 'brad', 'bradley', 'brady', 'brain', 'brained', 'brainer', 'brainless', 'brains', 'branagh', 'brand', 'brando', 'brandon', 'brash', 'brashear', 'brat', 'brave', 'bravery', 'bravo', 'brawl', 'brazil', 'break', 'breakdancing', 'breakfast', 'breaking', 'breaks', 'breakup', 'breasts', 'breath', 'breathe', 'breathless', 'breathtaking', 'breed', 'brenda', 'brennan', 'brett', 'brian', 'bride', 'brides', 'bridge', 'bridges', 'bridget', 'brief', 'briefly', 'bright', 'brighten', 'brighter', 'brilliance', 'brilliant', 'brilliantly', 'bring', 'bringing', 'brings', 'brit', 'britain', 'british', 'broad', 'broadcast', 'broadway', 'broderick', 'broke', 'broken', 'bromwell', 'bronson', 'bronte', 'bronx', 'brooding', 'brooke', 'brooks', 'bros', 'brosnan', 'brother', 'brothers', 'brought', 'brown', 'browne', 'bruce', 'brunette', 'bruno', 'brutal', 'brutality', 'brutally', 'brynner', 'btk', 'btw', 'bubble', 'buccaneer', 'buck', 'bucks', 'bud', 'buddies', 'buddy', 'budget', 'budgeted', 'budgets', 'buff', 'buffalo', 'buffs', 'bug', 'bugs', 'build', 'building', 'buildings', 'builds', 'built', 'bulb', 'bulimia', 'bulk', 'bull', 'bullet', 'bullets', 'bullied', 'bullies', 'bully', 'bumbling', 'bumps', 'bunch', 'burden', 'burdened', 'bureaucracy', 'burgade', 'burgess', 'burial', 'buried', 'burlesque', 'burn', 'burned', 'burning', 'burns', 'burnt', 'burrows', 'burst', 'bursting', 'bursts', 'burt', 'burton', 'bus', 'busby', 'busey', 'bush', 'business', 'businessman', 'bust', 'buster', 'busting', 'busy', 'but', 'butch', 'butcher', 'butler', 'butt', 'butter', 'butterflies', 'button', 'buy', 'buying', 'buys', 'buzz', 'by', 'bye', 'byron', 'cab', 'cabal', 'cabaret', 'cabin', 'cable', 'cage', 'cagney', 'cahill', 'cain', 'caine', 'cake', 'calamity', 'calculated', 'caliber', 'california', 'call', 'called', 'calling', 'calls', 'calm', 'calmly', 'calson', 'calvin', 'cam', 'cambodia', 'camcorder', 'came', 'cameo', 'cameos', 'camera', 'cameraman', 'cameras', 'cameron', 'camp', 'campaign', 'campbell', 'campers', 'camps', 'campy', 'can', 'canada', 'canadian', 'canal', 'canceled', 'cancellation', 'cancelled', 'cancer', 'candle', 'candy', 'cannes', 'cannibal', 'cannibalism', 'cannon', 'cannot', 'canonical', 'cant', 'canvas', 'canyon', 'cap', 'capability', 'capable', 'capacity', 'cape', 'caper', 'capital', 'capitalism', 'capote', 'caprica', 'capsule', 'capt', 'captain', 'captivating', 'capture', 'captured', 'captures', 'capturing', 'car', 'carax', 'card', 'cardboard', 'cards', 'care', 'cared', 'career', 'careers', 'careful', 'carefully', 'carell', 'cares', 'caretaker', 'carface', 'caribbean', 'caricature', 'caricatures', 'caring', 'carl', 'carlito', 'carlos', 'carlton', 'carlyle', 'carmen', 'carnage', 'carol', 'carole', 'caroline', 'caron', 'carpenter', 'carradine', 'carrere', 'carrey', 'carrie', 'carried', 'carries', 'carroll', 'carruthers', 'carry', 'carrying', 'carrère', 'cars', 'carter', 'cartoon', 'cartoonish', 'cartoons', 'cartwright', 'cary', 'casablanca', 'case', 'cases', 'cash', 'casino', 'cassavetes', 'cassie', 'cast', 'casting', 'castle', 'castro', 'casts', 'casual', 'casually', 'cat', 'catastrophe', 'catatonic', 'catch', 'catches', 'catching', 'catchy', 'cate', 'category', 'catherine', 'catholic', 'cathy', 'cats', 'cattle', 'caught', 'cause', 'caused', 'causes', 'causing', 'caution', 'cavalry', 'cave', 'cbs', 'cd', 'cecil', 'cedric', 'ceiling', 'celebi', 'celebrated', 'celebration', 'celebrities', 'celebrity', 'celine', 'cell', 'cells', 'celluloid', 'cemetery', 'cena', 'censors', 'censorship', 'center', 'centered', 'centers', 'central', 'centre', 'centres', 'centuries', 'century', 'cerebral', 'certain', 'certainly', 'certificate', 'cg', 'cgi', 'chain', 'chainsaw', 'chair', 'challenge', 'challenged', 'challenges', 'challenging', 'chamber', 'chamberlain', 'championship', 'chan', 'chance', 'chances', 'chandler', 'chang', 'change', 'changed', 'changes', 'changing', 'channel', 'channels', 'chans', 'chao', 'chaos', 'chaplin', 'chapter', 'character', 'characterisation', 'characteristic', 'characteristics', 'characterization', 'characterizations', 'characters', 'charge', 'charged', 'charges', 'charisma', 'charismatic', 'charles', 'charley', 'charlie', 'charlotte', 'charlton', 'charm', 'charming', 'charms', 'chase', 'chased', 'chases', 'chasing', 'chat', 'che', 'cheadle', 'cheap', 'cheaply', 'cheated', 'cheating', 'check', 'checking', 'cheek', 'cheer', 'cheers', 'cheese', 'cheesy', 'cheezy', 'cheh', 'chelsea', 'chemical', 'chemistry', 'chen', 'cher', 'chess', 'chest', 'cheung', 'chevy', 'chewing', 'chews', 'chicago', 'chick', 'chicken', 'chicks', 'chief', 'child', 'childhood', 'childish', 'childlike', 'children', 'childress', 'chile', 'chill', 'chiller', 'chilling', 'chillingly', 'chills', 'chimney', 'chimp', 'china', 'chinese', 'chip', 'chock', 'chocolat', 'choice', 'choices', 'choir', 'choose', 'chooses', 'choosing', 'chop', 'chopped', 'chopper', 'choppy', 'chopra', 'choreographed', 'choreography', 'chori', 'chorus', 'chose', 'chosen', 'chris', 'christ', 'christian', 'christianity', 'christians', 'christie', 'christina', 'christine', 'christmas', 'christopher', 'christy', 'chronicles', 'chuck', 'chuckle', 'chuckles', 'chupke', 'church', 'churches', 'chávez', 'cia', 'cigarette', 'cinderella', 'cinema', 'cinemas', 'cinematic', 'cinematographer', 'cinematography', 'circa', 'circle', 'circuit', 'circumstances', 'circus', 'cities', 'citizen', 'citizens', 'city', 'civil', 'civilization', 'clad', 'claim', 'claimed', 'claiming', 'claims', 'claire', 'clan', 'clarify', 'clark', 'clarke', 'clarkson', 'clash', 'class', 'classes', 'classic', 'classical', 'classics', 'classified', 'classy', 'claude', 'claus', 'claustrophobic', 'claw', 'clay', 'clean', 'cleaner', 'cleaning', 'clear', 'clearly', 'cleese', 'clerk', 'cleveland', 'clever', 'cleverly', 'cliche', 'cliché', 'clichéd', 'clichés', 'click', 'cliff', 'climactic', 'climatic', 'climax', 'climb', 'clinic', 'clint', 'clip', 'clips', 'clive', 'clock', 'clockwork', 'clone', 'clooney', 'close', 'closed', 'closely', 'closer', 'closes', 'closest', 'closet', 'closing', 'closure', 'clothes', 'clothing', 'clouds', 'clovis', 'clown', 'club', 'clue', 'clueless', 'clues', 'clumsy', 'clunker', 'clunky', 'clutter', 'clyde', 'co', 'coach', 'coal', 'coarse', 'coaster', 'coat', 'cobra', 'code', 'cody', 'coffee', 'coffin', 'cohen', 'coherent', 'cohesive', 'coincidence', 'coincidentally', 'coke', 'col', 'colbert', 'cold', 'coldly', 'cole', 'colin', 'collar', 'colleagues', 'collect', 'collection', 'collective', 'collector', 'college', 'collins', 'collinwood', 'collora', 'colonel', 'colonial', 'colonized', 'color', 'colorful', 'colors', 'colour', 'colourful', 'colours', 'columbia', 'columbine', 'columbo', 'com', 'comatose', 'combat', 'combination', 'combine', 'combined', 'combines', 'combining', 'combs', 'come', 'comeback', 'comedian', 'comedians', 'comedic', 'comedies', 'comedy', 'comes', 'comfort', 'comfortable', 'comfortably', 'comforting', 'comforts', 'comic', 'comical', 'comics', 'coming', 'command', 'commanding', 'commands', 'commend', 'commendable', 'commender', 'comment', 'commentary', 'commented', 'commenting', 'comments', 'commercial', 'commercials', 'commit', 'commits', 'committed', 'committee', 'committing', 'commodity', 'common', 'communicate', 'communication', 'communist', 'communities', 'community', 'companies', 'companion', 'companions', 'company', 'compare', 'compared', 'compares', 'comparing', 'comparison', 'comparisons', 'compassion', 'compelled', 'compelling', 'compete', 'competent', 'competition', 'complain', 'complained', 'complaining', 'complaint', 'complaints', 'complete', 'completed', 'completely', 'complex', 'complexity', 'complicated', 'complicating', 'composed', 'composer', 'composition', 'comprehension', 'compromise', 'compromised', 'computer', 'con', 'conan', 'conceit', 'conceived', 'concentrate', 'concentrates', 'concentrating', 'concentration', 'concept', 'conception', 'concepts', 'concern', 'concerned', 'concerning', 'concerns', 'concert', 'conclude', 'concludes', 'concluding', 'conclusion', 'condescending', 'condition', 'conditions', 'conduct', 'confess', 'confession', 'confidence', 'confident', 'confines', 'confirmed', 'conflict', 'conflicts', 'confront', 'confrontation', 'confronted', 'confronts', 'confuse', 'confused', 'confusing', 'confusion', 'congo', 'congratulations', 'connect', 'connected', 'connecting', 'connection', 'connections', 'connelly', 'connery', 'connie', 'conniving', 'connor', 'conquers', 'conrad', 'cons', 'conscience', 'conscious', 'consequence', 'consequences', 'consequently', 'consider', 'considerable', 'considerably', 'considered', 'considering', 'considers', 'consist', 'consisted', 'consistent', 'consistently', 'consists', 'conspiracy', 'constance', 'constant', 'constantly', 'constraints', 'constructed', 'construction', 'contact', 'contain', 'contained', 'containing', 'contains', 'contemporaries', 'contemporary', 'contempt', 'contend', 'content', 'contest', 'contestants', 'context', 'continent', 'continually', 'continuation', 'continue', 'continued', 'continues', 'continuing', 'continuity', 'continuous', 'continuously', 'contract', 'contrary', 'contrast', 'contrasting', 'contribute', 'contributed', 'contribution', 'contrived', 'control', 'controlled', 'controller', 'controlling', 'controls', 'controversial', 'convenient', 'conveniently', 'convent', 'convention', 'conventional', 'conventions', 'conversation', 'conversations', 'convey', 'conveyed', 'conveying', 'conveyor', 'conveys', 'convict', 'convicted', 'conviction', 'convicts', 'convince', 'convinced', 'convinces', 'convincing', 'convincingly', 'convoluted', 'cook', 'cookie', 'cooking', 'cool', 'cooper', 'cop', 'cope', 'copied', 'copies', 'copious', 'cops', 'copy', 'copyright', 'corbett', 'core', 'corey', 'corn', 'cornell', 'corner', 'corners', 'corny', 'coroner', 'corporate', 'corporation', 'corpse', 'corpses', 'correct', 'correctly', 'corrupt', 'corruption', 'cosimo', 'cost', 'costar', 'costs', 'costume', 'costumes', 'costuming', 'cotton', 'couch', 'could', 'couldn', 'count', 'counter', 'counterpoint', 'countess', 'countless', 'countries', 'country', 'countryside', 'counts', 'county', 'coup', 'couple', 'coupled', 'couples', 'courage', 'course', 'court', 'courtesy', 'courtroom', 'cousin', 'cousins', 'cover', 'coverage', 'covered', 'covering', 'covers', 'cowardly', 'cowboy', 'cox', 'crack', 'cracks', 'craft', 'crafted', 'craig', 'cram', 'crank', 'cranked', 'crap', 'crappy', 'crash', 'crashes', 'crashing', 'crass', 'craven', 'crawford', 'crazed', 'crazy', 'cream', 'creasy', 'create', 'created', 'creates', 'creating', 'creation', 'creations', 'creative', 'creativity', 'creator', 'creators', 'creature', 'creatures', 'credibility', 'credible', 'credit', 'creditable', 'credited', 'credits', 'creed', 'creep', 'creepy', 'crenna', 'crew', 'cricket', 'cried', 'cries', 'crime', 'crimes', 'criminal', 'criminals', 'cringe', 'cringeworthy', 'crippled', 'crisis', 'crisp', 'crispin', 'critic', 'critical', 'criticise', 'criticism', 'criticisms', 'criticized', 'critics', 'critique', 'crocodile', 'cronies', 'crooked', 'crooks', 'crosby', 'cross', 'crossed', 'crosses', 'crossing', 'crowd', 'crowded', 'crowe', 'crown', 'crowning', 'crucial', 'crude', 'cruel', 'cruella', 'cruelty', 'cruise', 'cruiser', 'crummy', 'crusade', 'crush', 'crushed', 'crushing', 'cry', 'crying', 'crypt', 'crystal', 'cuba', 'cube', 'cue', 'cues', 'culkin', 'culminating', 'culp', 'culprit', 'cult', 'cultists', 'cultural', 'culture', 'cultures', 'cunning', 'cup', 'cure', 'cured', 'curio', 'curiosity', 'curious', 'curly', 'current', 'currently', 'curse', 'curses', 'curtain', 'curtis', 'curtiz', 'curve', 'cusack', 'cushing', 'custom', 'customers', 'cut', 'cute', 'cuteness', 'cuter', 'cuts', 'cutting', 'cycle', 'cylons', 'cynic', 'cynical', 'cynicism', 'czech', 'da', 'dad', 'daddy', 'dafoe', 'daft', 'dahl', 'dahmer', 'daily', 'dallas', 'dalmatians', 'dalton', 'damage', 'damaged', 'dame', 'damme', 'damn', 'damned', 'damon', 'dan', 'dana', 'dance', 'dancer', 'dancers', 'dances', 'dancing', 'dandy', 'danes', 'danger', 'dangerous', 'dangerously', 'dangers', 'dani', 'daniel', 'daniels', 'danning', 'danny', 'dante', 'dare', 'dares', 'daria', 'daring', 'dario', 'dark', 'darker', 'darkest', 'darkheart', 'darkly', 'darkness', 'darlene', 'darn', 'darren', 'darryl', 'daryl', 'dash', 'data', 'date', 'dated', 'dates', 'daughter', 'daughters', 'dave', 'david', 'davies', 'davis', 'dawn', 'dawson', 'day', 'days', 'daytime', 'dazzled', 'dazzling', 'dbd', 'dc', 'de', 'dead', 'deadly', 'deadpan', 'deaf', 'deal', 'dealer', 'dealers', 'dealing', 'deals', 'dealt', 'dean', 'deanna', 'dear', 'death', 'deaths', 'deathtrap', 'debacle', 'debate', 'debbie', 'debt', 'debut', 'debuted', 'decade', 'decades', 'decaying', 'decent', 'deception', 'decide', 'decided', 'decidedly', 'decides', 'deciding', 'decision', 'decisions', 'deck', 'declares', 'decline', 'deco', 'deconstructed', 'decoration', 'dedicated', 'dedication', 'dee', 'deed', 'deeds', 'deemed', 'deep', 'deeper', 'deeply', 'defeat', 'defeated', 'defeats', 'defend', 'defending', 'defense', 'defies', 'definately', 'define', 'defined', 'defining', 'definite', 'definitely', 'definition', 'definitive', 'degrades', 'degree', 'degrees', 'deja', 'deliberate', 'deliberately', 'delicate', 'delicious', 'deliciously', 'delight', 'delighted', 'delightful', 'delightfully', 'delirious', 'deliver', 'deliverance', 'delivered', 'delivering', 'delivers', 'delivery', 'demand', 'demanding', 'demands', 'demeaning', 'demeanor', 'demented', 'demille', 'demise', 'demme', 'democratic', 'demon', 'demonic', 'demons', 'demonstrate', 'demonstrated', 'demonstrating', 'dench', 'denholm', 'denial', 'deniro', 'denis', 'denise', 'dennis', 'denny', 'denouement', 'dentist', 'denver', 'deny', 'denying', 'denzel', 'depardieu', 'depart', 'departed', 'department', 'departure', 'depend', 'depended', 'dependent', 'depending', 'depends', 'depict', 'depicted', 'depicting', 'depiction', 'depictions', 'depicts', 'deplorable', 'deposit', 'depressed', 'depressing', 'depression', 'depth', 'depths', 'deputy', 'der', 'deranged', 'derek', 'derision', 'derivative', 'derived', 'des', 'descent', 'describe', 'described', 'describes', 'describing', 'description', 'desert', 'deserted', 'deserve', 'deserved', 'deservedly', 'deserves', 'deserving', 'design', 'designed', 'designer', 'designers', 'designs', 'desire', 'desired', 'desires', 'desk', 'despair', 'desperate', 'desperately', 'desperation', 'despicable', 'despite', 'destination', 'destiny', 'destroy', 'destroyed', 'destroying', 'destroys', 'destruction', 'destructive', 'detached', 'detail', 'detailed', 'details', 'detective', 'detectives', 'determination', 'determine', 'determined', 'detour', 'detract', 'develop', 'developed', 'developing', 'development', 'developments', 'develops', 'deveraux', 'devgan', 'device', 'devices', 'devil', 'devised', 'devoid', 'devon', 'devoted', 'devotion', 'dewey', 'dexter', 'diagnosis', 'dialog', 'dialogs', 'dialogue', 'dialogues', 'diamond', 'diamonds', 'diana', 'diane', 'dicaprio', 'dick', 'dickens', 'dictator', 'did', 'didn', 'didnt', 'die', 'died', 'diego', 'dies', 'dietrich', 'dietrichson', 'difference', 'differences', 'different', 'differently', 'differing', 'difficult', 'difficulties', 'difficulty', 'dig', 'digest', 'digging', 'digital', 'digitally', 'dignity', 'digs', 'dilemma', 'dillman', 'dillon', 'dim', 'dime', 'dimension', 'dimensional', 'dimensions', 'diminishes', 'din', 'dingo', 'dining', 'dinner', 'dinos', 'dinosaur', 'dinosaurs', 'dipping', 'dire', 'direct', 'directed', 'directing', 'direction', 'directions', 'directly', 'director', 'directorial', 'directors', 'directs', 'dirt', 'dirty', 'disabled', 'disagree', 'disappear', 'disappeared', 'disappears', 'disappoint', 'disappointed', 'disappointing', 'disappointment', 'disappoints', 'disaster', 'disasters', 'disastrous', 'disbelief', 'disc', 'discernible', 'discount', 'discover', 'discovered', 'discoveries', 'discovering', 'discovers', 'discovery', 'discrimination', 'discs', 'discuss', 'discussed', 'discussing', 'discussion', 'discussions', 'disease', 'disgrace', 'disgraceful', 'disgruntled', 'disguise', 'disguised', 'disgust', 'disgusted', 'disgusting', 'dish', 'dishonest', 'disjointed', 'dislike', 'disliked', 'dismiss', 'dismissed', 'disney', 'disorder', 'display', 'displayed', 'displaying', 'displays', 'disrespect', 'disservice', 'distance', 'distant', 'distaste', 'distinct', 'distinction', 'distinctive', 'distinctly', 'distinguish', 'distinguished', 'distorted', 'distract', 'distracted', 'distracting', 'distraction', 'distraught', 'distribution', 'district', 'distrust', 'disturb', 'disturbed', 'disturbing', 'ditto', 'diver', 'diverse', 'diversion', 'diversions', 'diversity', 'dives', 'divided', 'diviner', 'diving', 'division', 'divorce', 'divorced', 'divorces', 'dixon', 'dj', 'do', 'doc', 'dock', 'doctor', 'doctors', 'document', 'documentaries', 'documentary', 'documented', 'documents', 'doe', 'does', 'doesn', 'dog', 'dogma', 'dogs', 'doing', 'doll', 'dollar', 'dollars', 'dolls', 'dolph', 'dome', 'domestic', 'dominant', 'dominate', 'dominated', 'dominates', 'dominating', 'dominic', 'domino', 'don', 'donald', 'done', 'donna', 'dont', 'doo', 'doodle', 'doodlebops', 'dookie', 'doom', 'doomed', 'door', 'doors', 'dopey', 'doren', 'dorff', 'doris', 'dorothy', 'dose', 'dot', 'doting', 'double', 'doubly', 'doubt', 'doubts', 'doug', 'douglas', 'down', 'downbeat', 'downey', 'downhill', 'downloaded', 'downright', 'downs', 'downstairs', 'downtown', 'downward', 'doyle', 'dozen', 'dozens', 'dr', 'drab', 'dracula', 'draft', 'drag', 'dragged', 'dragging', 'dragon', 'dragons', 'drags', 'drain', 'drake', 'drama', 'dramas', 'dramatic', 'dramatically', 'drastically', 'draw', 'drawing', 'drawings', 'drawn', 'draws', 'dread', 'dreadful', 'dreadfully', 'dream', 'dreamed', 'dreams', 'dreamworks', 'dreary', 'dreck', 'dress', 'dressed', 'dresses', 'dressing', 'drew', 'drift', 'drifting', 'drink', 'drinking', 'dripping', 'drive', 'drivel', 'driven', 'driver', 'drives', 'driving', 'drool', 'drop', 'dropped', 'dropping', 'drops', 'drove', 'drowned', 'drowning', 'drug', 'drugged', 'drugs', 'drum', 'drummer', 'drums', 'drunk', 'drunken', 'dry', 'du', 'dub', 'dubbed', 'dubbing', 'dublin', 'duchovny', 'duck', 'dud', 'dude', 'dudikoff', 'due', 'duel', 'duets', 'duh', 'duke', 'dull', 'duller', 'dumb', 'dumber', 'dummy', 'dump', 'dumped', 'dunaway', 'duncan', 'dung', 'dungeon', 'duo', 'duration', 'during', 'dust', 'dustin', 'dutch', 'dutifully', 'duty', 'duvall', 'dvd', 'dvds', 'dwarf', 'dwight', 'dye', 'dying', 'dyke', 'dylan', 'dynamic', 'dynamics', 'dysfunctional', 'each', 'eadie', 'eager', 'ealing', 'ear', 'earl', 'earlier', 'early', 'earn', 'earned', 'earnest', 'earns', 'ears', 'earth', 'earthquake', 'ease', 'easier', 'easiest', 'easily', 'east', 'eastern', 'eastwood', 'easy', 'eat', 'eaten', 'eater', 'eating', 'ebert', 'eccentric', 'economic', 'ecstasy', 'ed', 'eddie', 'edel', 'edgar', 'edge', 'edged', 'edges', 'edgy', 'edie', 'edison', 'edit', 'edited', 'edith', 'editing', 'edition', 'editor', 'educated', 'education', 'educational', 'edward', 'eerie', 'effect', 'effective', 'effectively', 'effects', 'efficient', 'effort', 'effortlessly', 'efforts', 'egg', 'eglantine', 'ego', 'egotistical', 'egypt', 'egyptian', 'eh', 'eight', 'eighteen', 'eighth', 'eighties', 'einstein', 'either', 'ej', 'el', 'elaborate', 'elder', 'elderly', 'eleanor', 'electric', 'electronic', 'electronics', 'elegance', 'elegant', 'element', 'elementary', 'elements', 'elephant', 'elevated', 'elevator', 'eleven', 'elisha', 'elite', 'elizabeth', 'ella', 'ellen', 'elm', 'elsa', 'else', 'elsewhere', 'elton', 'elvis', 'em', 'email', 'embarrassed', 'embarrassing', 'embarrassingly', 'embarrassment', 'embezzler', 'embrace', 'emerge', 'emergence', 'emerges', 'emil', 'emily', 'emma', 'emmanuelle', 'emoting', 'emotion', 'emotional', 'emotionally', 'emotions', 'empathetic', 'empathy', 'emperor', 'emphasis', 'empire', 'employ', 'employed', 'employment', 'emptiness', 'empty', 'en', 'enchanting', 'encounter', 'encountered', 'encounters', 'encourage', 'end', 'endearing', 'endeavor', 'ended', 'ending', 'endings', 'endless', 'endlessly', 'ends', 'endure', 'enduring', 'enemies', 'enemy', 'energetic', 'energy', 'engage', 'engaged', 'engaging', 'engine', 'england', 'english', 'engrossing', 'enhance', 'enhanced', 'enjoy', 'enjoyable', 'enjoyed', 'enjoying', 'enjoyment', 'enjoys', 'enlightenment', 'enormous', 'enormously', 'enough', 'enraged', 'ensemble', 'ensues', 'ensuing', 'ensure', 'enter', 'entered', 'entering', 'enterprise', 'enters', 'entertain', 'entertained', 'entertainer', 'entertaining', 'entertainment', 'entertains', 'enthusiasm', 'enthusiastic', 'entire', 'entirely', 'entirety', 'entitled', 'entrance', 'entry', 'environment', 'environmental', 'envy', 'epic', 'episode', 'episodes', 'epitome', 'equal', 'equally', 'equals', 'equipment', 'equivalent', 'er', 'era', 'erase', 'eric', 'erik', 'ernie', 'erotic', 'errol', 'erroll', 'error', 'errors', 'escape', 'escaped', 'escapes', 'escaping', 'eskimo', 'esp', 'especially', 'espionage', 'esque', 'esquire', 'essence', 'essential', 'essentially', 'establish', 'established', 'establishing', 'establishment', 'estate', 'esteem', 'esther', 'et', 'etc', 'etcetera', 'eternal', 'eternity', 'ethan', 'ethnic', 'eugene', 'europa', 'europe', 'european', 'europeans', 'eva', 'evans', 'eve', 'evelyn', 'even', 'evening', 'event', 'events', 'eventual', 'eventually', 'ever', 'everett', 'every', 'everybody', 'everyday', 'everyone', 'everything', 'everytown', 'everywhere', 'evidence', 'evident', 'evidently', 'evil', 'evoke', 'evoked', 'evoking', 'evolution', 'evolve', 'evolved', 'evolves', 'ex', 'exact', 'exactly', 'exaggerated', 'examination', 'examine', 'example', 'examples', 'excellence', 'excellent', 'excellently', 'except', 'excepting', 'exception', 'exceptional', 'exceptionally', 'exceptions', 'excess', 'excesses', 'excessive', 'exchange', 'excited', 'excitement', 'exciting', 'exclusively', 'excruciating', 'excruciatingly', 'excuse', 'excuses', 'execute', 'executed', 'execution', 'executive', 'exercise', 'exhibit', 'exist', 'existed', 'existence', 'existent', 'existential', 'exists', 'exit', 'exorcist', 'exotic', 'expanded', 'expect', 'expectation', 'expectations', 'expected', 'expecting', 'expects', 'expedition', 'expensive', 'experience', 'experienced', 'experiences', 'experiencing', 'experiment', 'experimental', 'experiments', 'expert', 'expertly', 'experts', 'explain', 'explained', 'explaining', 'explains', 'explanation', 'explanations', 'explicit', 'explicitly', 'explode', 'explodes', 'exploding', 'exploit', 'exploitation', 'exploitative', 'exploited', 'exploits', 'exploration', 'explore', 'explored', 'explores', 'exploring', 'explosion', 'explosions', 'explosive', 'expose', 'exposed', 'exposing', 'exposition', 'exposure', 'express', 'expressed', 'expresses', 'expression', 'expressions', 'exquisite', 'extended', 'extensive', 'extent', 'exterior', 'external', 'extra', 'extraordinary', 'extras', 'extravagant', 'extreme', 'extremely', 'extremes', 'eye', 'eyebrows', 'eyed', 'eyes', 'eyre', 'fabric', 'fabulous', 'facade', 'face', 'faced', 'faces', 'facial', 'facing', 'fact', 'factor', 'factors', 'factory', 'facts', 'factual', 'fade', 'faded', 'fades', 'fail', 'failed', 'failing', 'fails', 'failure', 'faint', 'fair', 'fairbanks', 'fairly', 'fairness', 'fairy', 'faith', 'faithful', 'fake', 'falcon', 'falk', 'fall', 'fallen', 'falling', 'fallon', 'falls', 'false', 'fame', 'famed', 'familiar', 'families', 'family', 'famous', 'fan', 'fanatic', 'fancy', 'fanfan', 'fanning', 'fanny', 'fans', 'fantasies', 'fantastic', 'fantasy', 'fante', 'far', 'farce', 'fare', 'farm', 'farmer', 'farmers', 'farrell', 'farrelly', 'farting', 'fascinated', 'fascinating', 'fascination', 'fashion', 'fashionable', 'fashioned', 'fassbinder', 'fast', 'faster', 'fat', 'fatal', 'fatale', 'fate', 'father', 'fathers', 'fathom', 'fault', 'faults', 'favor', 'favorite', 'favorites', 'favourite', 'fay', 'façade', 'fbi', 'fear', 'fears', 'feast', 'feat', 'feature', 'featured', 'features', 'featurette', 'featuring', 'fed', 'federal', 'feeble', 'feed', 'feel', 'feeling', 'feelings', 'feels', 'feet', 'feisty', 'fell', 'fellini', 'fellow', 'fellows', 'felt', 'female', 'females', 'feminine', 'feminist', 'femme', 'fence', 'fenway', 'ferrell', 'fest', 'festival', 'fetched', 'fetchit', 'fetish', 'feudal', 'fever', 'few', 'fey', 'fi', 'fiancé', 'fiancée', 'fiasco', 'fiction', 'fictional', 'fidelity', 'fido', 'field', 'fields', 'fiend', 'fiennes', 'fierce', 'fiery', 'fifteen', 'fifth', 'fifties', 'fifty', 'fight', 'fighter', 'fighting', 'fights', 'figure', 'figured', 'figures', 'figuring', 'fill', 'filled', 'filler', 'filling', 'fills', 'film', 'filmed', 'filming', 'filmmaker', 'filmmakers', 'filmmaking', 'films', 'filth', 'filthy', 'final', 'finale', 'finally', 'finance', 'financial', 'financing', 'find', 'finding', 'finds', 'fine', 'finely', 'fineman', 'finer', 'finest', 'finger', 'fingers', 'finish', 'finished', 'finney', 'fiorentino', 'fire', 'fired', 'fireplace', 'fireworks', 'firing', 'firm', 'firmly', 'first', 'firstly', 'fish', 'fishburne', 'fisher', 'fisherman', 'fishing', 'fist', 'fisted', 'fit', 'fits', 'fitting', 'fitzgerald', 'five', 'fix', 'fixed', 'flag', 'flags', 'flair', 'flamboyant', 'flames', 'flash', 'flashback', 'flashbacks', 'flashes', 'flashing', 'flashy', 'flat', 'flavor', 'flaw', 'flawed', 'flawless', 'flawlessly', 'flaws', 'fled', 'fledged', 'flee', 'fleeing', 'fleet', 'fleeting', 'fleming', 'flesh', 'fleshed', 'flexible', 'flick', 'flicks', 'flies', 'flight', 'flimsy', 'flo', 'float', 'floating', 'flock', 'floor', 'floors', 'flop', 'flops', 'flora', 'florida', 'flow', 'flowing', 'floyd', 'fluff', 'fluffy', 'fluid', 'fly', 'flying', 'flynn', 'focus', 'focused', 'focuses', 'focusing', 'fog', 'foil', 'folk', 'folklore', 'folks', 'follow', 'followed', 'followers', 'following', 'follows', 'folly', 'fond', 'fonda', 'fondness', 'fontaine', 'food', 'fool', 'fooled', 'foolish', 'foolishly', 'fools', 'foot', 'footage', 'football', 'footsteps', 'for', 'forbes', 'forbidden', 'force', 'forced', 'forces', 'forcing', 'ford', 'fore', 'foreboding', 'foreign', 'forest', 'forever', 'forewarned', 'forget', 'forgettable', 'forgivable', 'forgive', 'forgiven', 'forgiving', 'forgot', 'forgotten', 'form', 'format', 'former', 'formerly', 'forms', 'formula', 'formulaic', 'forsythe', 'forth', 'forties', 'fortunately', 'fortune', 'forty', 'forum', 'forward', 'forwarded', 'forwarding', 'foster', 'fought', 'foul', 'found', 'foundation', 'four', 'fourteen', 'fourth', 'fox', 'foxx', 'fps', 'fraction', 'fraggle', 'fragile', 'frame', 'framed', 'frames', 'framework', 'framing', 'france', 'frances', 'franchise', 'francis', 'francisco', 'franco', 'frank', 'frankenheimer', 'frankenstein', 'frankie', 'franklin', 'frankly', 'fraud', 'freak', 'freaked', 'freaks', 'freaky', 'fred', 'freddy', 'free', 'freedom', 'freely', 'freeman', 'freeze', 'french', 'frequent', 'frequently', 'fresh', 'freshman', 'freshness', 'freudian', 'friday', 'fried', 'friend', 'friendly', 'friends', 'friendship', 'fright', 'frightened', 'frightening', 'frodo', 'frog', 'frollo', 'from', 'front', 'frontal', 'frontier', 'fronts', 'frozen', 'fruit', 'frustrated', 'frustrating', 'frustration', 'frye', 'fu', 'fuel', 'fugitive', 'fulci', 'fulfilling', 'full', 'fuller', 'fully', 'fun', 'function', 'funding', 'funhouse', 'funnier', 'funniest', 'funny', 'fuqua', 'fur', 'furious', 'furniture', 'further', 'furthermore', 'fury', 'future', 'futuristic', 'fuzzy', 'fx', 'gabe', 'gabriel', 'gackt', 'gadget', 'gaelic', 'gag', 'gags', 'gail', 'gaillardia', 'gain', 'gained', 'gal', 'galactica', 'gambit', 'game', 'games', 'gandalf', 'gandolfini', 'gang', 'gangs', 'gangster', 'gangsters', 'gap', 'garage', 'garbage', 'garbo', 'garden', 'gardener', 'gardens', 'garish', 'garnered', 'garrison', 'gary', 'gas', 'gate', 'gates', 'gather', 'gathered', 'gathers', 'gave', 'gay', 'gays', 'gazzara', 'gear', 'geared', 'geek', 'gem', 'gems', 'gen', 'gender', 'genders', 'gene', 'general', 'generally', 'generate', 'generated', 'generation', 'generations', 'generic', 'generous', 'genetic', 'genie', 'genius', 'geniuses', 'genre', 'genres', 'gentle', 'gentleman', 'gentlemen', 'gently', 'genuine', 'genuinely', 'george', 'georges', 'gerald', 'geraldine', 'gerard', 'germaine', 'german', 'germans', 'germany', 'gerry', 'gershwin', 'gesture', 'gestures', 'get', 'getaway', 'gets', 'getting', 'ghastly', 'ghetto', 'ghost', 'ghostly', 'ghosts', 'ghoulies', 'gi', 'giallo', 'giant', 'giants', 'gibson', 'gielgud', 'gift', 'gifted', 'gifts', 'gig', 'gigantic', 'giggle', 'gigi', 'gilbert', 'gilliam', 'gillian', 'gilligan', 'gilmore', 'gimmick', 'gimmicks', 'gimmicky', 'gina', 'ginger', 'gingerbread', 'gingold', 'girl', 'girlfight', 'girlfriend', 'girls', 'gis', 'give', 'given', 'gives', 'giving', 'glad', 'gladly', 'glamor', 'glamorous', 'glamour', 'glance', 'glaring', 'glass', 'glasses', 'gleason', 'glee', 'glenda', 'glenn', 'glib', 'glide', 'glimpse', 'glimpses', 'glitch', 'global', 'globe', 'gloria', 'glorify', 'glorious', 'gloriously', 'glory', 'gloss', 'glossy', 'gloved', 'glover', 'glow', 'glowing', 'glue', 'glued', 'go', 'goal', 'goals', 'goat', 'gobo', 'god', 'godard', 'goddess', 'godfather', 'godmother', 'gods', 'godzilla', 'goer', 'goers', 'goes', 'goines', 'going', 'goings', 'gojitmal', 'gojoe', 'gold', 'goldberg', 'goldblum', 'golden', 'goldie', 'goldsmith', 'goldsworthy', 'goldwyn', 'golf', 'gomez', 'gone', 'gonna', 'goo', 'good', 'goodbye', 'gooding', 'goodman', 'goodness', 'goods', 'goody', 'goof', 'goofs', 'goofy', 'goose', 'gordon', 'gore', 'gorgeous', 'gorilla', 'gorshin', 'gory', 'gosha', 'got', 'gothic', 'gotta', 'gotten', 'gough', 'gould', 'government', 'governor', 'gown', 'grab', 'grabbed', 'grabbing', 'grable', 'grabs', 'grace', 'graceful', 'gracefully', 'graces', 'grade', 'grader', 'gradually', 'graduate', 'grady', 'graffiti', 'graham', 'grainy', 'grams', 'grand', 'grandfather', 'grandma', 'grandmother', 'grandpa', 'grandson', 'grant', 'granted', 'graphic', 'graphically', 'graphics', 'grasp', 'grass', 'grateful', 'grating', 'gratuitous', 'grave', 'graveyard', 'gravity', 'gray', 'grayson', 'grease', 'great', 'greater', 'greatest', 'greatly', 'greatness', 'greats', 'greed', 'greedy', 'greek', 'green', 'greener', 'greenhouse', 'greenwich', 'greg', 'grendel', 'greta', 'grew', 'grey', 'griffith', 'grim', 'grind', 'gripping', 'grisby', 'gritty', 'groom', 'groove', 'gross', 'grossly', 'grotesque', 'ground', 'groundbreaking', 'grounded', 'grounds', 'group', 'groups', 'grow', 'growing', 'grown', 'grows', 'growth', 'grudge', 'gruesome', 'gruff', 'gruner', 'guarantee', 'guaranteed', 'guard', 'guarded', 'guardian', 'guards', 'guess', 'guessed', 'guessing', 'guest', 'guests', 'guevara', 'guide', 'guilt', 'guilty', 'guinea', 'guinness', 'gun', 'gunfire', 'gunga', 'gunned', 'guns', 'guru', 'gus', 'gusto', 'gut', 'guts', 'guy', 'guys', 'guzman', 'gwyneth', 'gypo', 'gypsy', 'ha', 'habit', 'hack', 'hackneyed', 'had', 'hadith', 'hadn', 'hag', 'haha', 'hahk', 'hai', 'hail', 'haim', 'hair', 'haired', 'hairstyles', 'hairy', 'hal', 'hale', 'half', 'halfway', 'haliday', 'hall', 'hallam', 'hallmark', 'halloween', 'hallucination', 'hallucinations', 'halt', 'ham', 'hamburg', 'hamill', 'hamilton', 'hamlet', 'hammer', 'hammy', 'hams', 'hand', 'handed', 'handful', 'handicapped', 'handle', 'handled', 'handling', 'hands', 'handsome', 'handy', 'hang', 'hanged', 'hanging', 'hangs', 'hank', 'hanka', 'hanks', 'hannah', 'hanzo', 'haphazard', 'hapless', 'happen', 'happened', 'happening', 'happenings', 'happens', 'happier', 'happily', 'happiness', 'happy', 'hara', 'harbor', 'hard', 'hardcore', 'harder', 'hardly', 'hardy', 'harlin', 'harlow', 'harm', 'harmless', 'harold', 'harrer', 'harriet', 'harrington', 'harris', 'harrison', 'harrowing', 'harry', 'harsh', 'hart', 'hartley', 'harvey', 'has', 'hasn', 'hastily', 'hat', 'hate', 'hated', 'hateful', 'hates', 'hatred', 'hats', 'haunted', 'haunting', 'have', 'haven', 'having', 'havoc', 'hawaii', 'hawke', 'hawn', 'hay', 'hayden', 'hayes', 'hayworth', 'hbo', 'he', 'head', 'headache', 'headed', 'heading', 'headlines', 'headmistress', 'heads', 'headstrong', 'healing', 'health', 'healthy', 'heap', 'hear', 'heard', 'hearing', 'hearn', 'hears', 'hearst', 'heart', 'heartbreaking', 'hearted', 'heartfelt', 'heartily', 'heartland', 'hearts', 'heartwarming', 'hearty', 'heat', 'heated', 'heath', 'heaven', 'heavily', 'heavy', 'hebrew', 'heck', 'hectic', 'heels', 'height', 'heights', 'heir', 'heiress', 'heist', 'held', 'helen', 'helena', 'helgeland', 'helicopter', 'helicopters', 'hell', 'hellman', 'hello', 'helluva', 'helmed', 'helmet', 'helmets', 'help', 'helped', 'helpful', 'helping', 'helpless', 'helps', 'helsing', 'hence', 'henchman', 'henderson', 'henry', 'hepburn', 'her', 'herd', 'here', 'herein', 'hermann', 'hernandez', 'hero', 'heroes', 'heroic', 'heroin', 'heroine', 'herr', 'herrings', 'hers', 'herself', 'hesitant', 'hesitation', 'heston', 'hewitt', 'hey', 'hi', 'hickock', 'hidden', 'hide', 'hideous', 'hides', 'hiding', 'high', 'higher', 'highest', 'highlight', 'highlighted', 'highlights', 'highly', 'highway', 'hiking', 'hilarious', 'hilariously', 'hilarity', 'hilda', 'hill', 'hilliard', 'hills', 'him', 'himself', 'hines', 'hint', 'hinted', 'hints', 'hip', 'hippie', 'hippies', 'hire', 'hired', 'hires', 'hiring', 'his', 'historian', 'historic', 'historical', 'historically', 'history', 'histrionic', 'hit', 'hitchcock', 'hitler', 'hits', 'hitting', 'hk', 'hmm', 'hmmm', 'ho', 'hobbits', 'hobgoblins', 'hodgepodge', 'hoffman', 'hokey', 'hold', 'holden', 'holding', 'holds', 'hole', 'holes', 'holiday', 'holland', 'hollow', 'holly', 'hollywood', 'holm', 'holmes', 'holocaust', 'holy', 'homage', 'home', 'homeless', 'homer', 'homes', 'homework', 'homicide', 'homo', 'homosexual', 'honest', 'honestly', 'honesty', 'hong', 'honor', 'hood', 'hook', 'hooked', 'hooker', 'hooper', 'hoot', 'hoover', 'hop', 'hope', 'hoped', 'hopeful', 'hopefully', 'hopeless', 'hopelessly', 'hopes', 'hoping', 'hopkins', 'hopper', 'horny', 'horrendous', 'horrible', 'horribly', 'horrid', 'horrific', 'horrified', 'horrifying', 'horror', 'horrors', 'horse', 'horses', 'hospital', 'host', 'hostage', 'hostess', 'hostile', 'hot', 'hotel', 'hotter', 'hour', 'hours', 'house', 'household', 'houses', 'housewife', 'housewives', 'houston', 'how', 'howard', 'howell', 'however', 'howling', 'html', 'http', 'hudson', 'hug', 'huge', 'hugely', 'huggaland', 'hugging', 'huggins', 'hugh', 'hughes', 'hugo', 'hugs', 'hugsy', 'huh', 'hum', 'human', 'humane', 'humanity', 'humanoid', 'humans', 'humble', 'humiliated', 'humiliating', 'humor', 'humorous', 'humour', 'hunchback', 'hundred', 'hundreds', 'hundstage', 'hung', 'hunger', 'hungry', 'hunk', 'hunky', 'hunt', 'hunted', 'hunter', 'hunters', 'hunting', 'huppert', 'hurled', 'hurley', 'hurricane', 'hurry', 'hurt', 'hurts', 'husband', 'husbands', 'hustle', 'hustler', 'huston', 'hybrid', 'hyde', 'hype', 'hyped', 'hyper', 'hypnotic', 'hypnotized', 'hyrum', 'hysteria', 'hysterical', 'hysterically', 'iago', 'ian', 'ice', 'iceberg', 'icon', 'iconic', 'icy', 'id', 'ida', 'idea', 'ideal', 'idealistic', 'ideals', 'ideas', 'identical', 'identified', 'identify', 'identity', 'ideological', 'idiocy', 'idiosyncrasies', 'idiot', 'idiotic', 'idiots', 'idol', 'ie', 'if', 'ifans', 'ignorance', 'ignorant', 'ignore', 'ignored', 'ignores', 'ignoring', 'ii', 'iii', 'ilk', 'ill', 'illegal', 'illiterate', 'illness', 'illogical', 'illuminate', 'illusion', 'illusions', 'illustrate', 'illustrated', 'illustration', 'im', 'image', 'imagery', 'images', 'imaginable', 'imaginary', 'imagination', 'imaginations', 'imaginative', 'imagine', 'imagined', 'imagining', 'imbecilic', 'imdb', 'imitate', 'imitating', 'imitation', 'imitations', 'immature', 'immediate', 'immediately', 'immense', 'immensely', 'immersed', 'immersion', 'immigrant', 'immorality', 'immortal', 'imo', 'impact', 'impending', 'impersonating', 'implausible', 'implied', 'implies', 'imply', 'importance', 'important', 'importantly', 'imposed', 'imposing', 'impossible', 'impostor', 'impress', 'impressed', 'impresses', 'impression', 'impressive', 'imprisoned', 'improbable', 'improve', 'improved', 'improvement', 'impulse', 'in', 'inability', 'inaccuracies', 'inaccurate', 'inane', 'inappropriate', 'inc', 'incapable', 'incest', 'incestuous', 'inches', 'incident', 'incidental', 'incidentally', 'incidents', 'inclined', 'include', 'included', 'includes', 'including', 'inclusion', 'incoherent', 'income', 'incomparable', 'incompetence', 'incompetent', 'incomplete', 'incomprehensible', 'inconsequential', 'inconsistencies', 'inconsistent', 'incorporate', 'incorporates', 'incorrect', 'increase', 'increased', 'increases', 'increasingly', 'incredible', 'incredibly', 'incubus', 'indeed', 'independent', 'indestructible', 'india', 'indian', 'indiana', 'indians', 'indicate', 'indicated', 'indicates', 'indication', 'indie', 'indifferent', 'individual', 'individuals', 'indonesian', 'induced', 'inducing', 'indulgent', 'industrial', 'industry', 'inept', 'ineptitude', 'inevitable', 'inevitably', 'inexperienced', 'inexplicable', 'inexplicably', 'infamous', 'infants', 'infected', 'inferior', 'inflicted', 'influence', 'influenced', 'influential', 'info', 'inform', 'information', 'informative', 'informed', 'informer', 'informs', 'infuriating', 'ing', 'ingenious', 'ingredients', 'ingrid', 'inhabit', 'inhabitants', 'inhabited', 'inherent', 'inherently', 'inherited', 'initial', 'initially', 'inject', 'injured', 'injuries', 'injustice', 'inmates', 'inner', 'innocence', 'innocent', 'innovative', 'insane', 'insanity', 'insect', 'insects', 'inserted', 'inside', 'insight', 'insightful', 'insights', 'insignificance', 'insipid', 'insist', 'insisted', 'insisting', 'insists', 'insomnia', 'inspector', 'inspiration', 'inspirational', 'inspire', 'inspired', 'inspires', 'inspiring', 'installment', 'installments', 'instance', 'instances', 'instant', 'instantly', 'instead', 'instill', 'instinct', 'instincts', 'institution', 'instructed', 'instruction', 'instructor', 'instrument', 'instrumental', 'instruments', 'insubstantial', 'insult', 'insulted', 'insulting', 'insultingly', 'insults', 'insurance', 'intact', 'integral', 'integrity', 'intellect', 'intellectual', 'intellectually', 'intelligence', 'intelligent', 'intelligently', 'intend', 'intended', 'intends', 'intense', 'intensely', 'intensity', 'intent', 'intention', 'intentional', 'intentionally', 'intentioned', 'intentions', 'inter', 'interact', 'interaction', 'interactions', 'interchangeable', 'interest', 'interested', 'interesting', 'interestingly', 'interests', 'interface', 'interference', 'interlude', 'interminable', 'internal', 'international', 'internet', 'interplay', 'interpret', 'interpretation', 'interpretations', 'interpreted', 'interrupted', 'interview', 'interviewing', 'interviews', 'intimate', 'into', 'intolerance', 'intricate', 'intrigue', 'intrigued', 'intriguing', 'intro', 'introduce', 'introduced', 'introduces', 'introducing', 'introduction', 'introspective', 'intruder', 'invading', 'invariably', 'invasion', 'invented', 'inventing', 'invention', 'inventive', 'invest', 'invested', 'investigate', 'investigating', 'investigation', 'investigator', 'investment', 'invincible', 'invisible', 'invite', 'invited', 'involve', 'involved', 'involvement', 'involves', 'involving', 'iq', 'iran', 'iranian', 'iraq', 'ireland', 'irene', 'irish', 'iron', 'ironic', 'ironically', 'irony', 'irrational', 'irrelevant', 'irresistible', 'irreverent', 'irreversible', 'irritate', 'irritated', 'irritates', 'irritating', 'irs', 'is', 'isabelle', 'islam', 'island', 'isn', 'isolated', 'isolation', 'israel', 'israeli', 'issue', 'issues', 'istanbul', 'it', 'italian', 'italians', 'italy', 'item', 'items', 'its', 'itself', 'iv', 'izzard', 'jabs', 'jack', 'jacket', 'jackie', 'jackson', 'jacob', 'jacques', 'jaded', 'jail', 'jake', 'jakub', 'jam', 'james', 'jamie', 'jan', 'jane', 'janet', 'jang', 'janice', 'janine', 'jansen', 'japan', 'japanese', 'jaq', 'jason', 'jaw', 'jaws', 'jay', 'jazz', 'jealous', 'jealousy', 'jean', 'jeanne', 'jedi', 'jeep', 'jeff', 'jeffrey', 'jenna', 'jennifer', 'jenny', 'jeremy', 'jerk', 'jerky', 'jerry', 'jersey', 'jerusalem', 'jess', 'jesse', 'jessica', 'jessie', 'jesus', 'jet', 'jeter', 'jewelry', 'jewish', 'jewison', 'jews', 'jfk', 'jim', 'jimmy', 'jj', 'joan', 'joanna', 'job', 'jobs', 'jodie', 'joe', 'joel', 'joey', 'john', 'johnny', 'johnson', 'join', 'joined', 'joining', 'joins', 'joint', 'joke', 'jokes', 'jolie', 'jon', 'jonathan', 'jones', 'jordan', 'joseph', 'journalist', 'journey', 'journeymen', 'jover', 'jovi', 'joy', 'joyous', 'joys', 'jr', 'juan', 'jud', 'jude', 'judge', 'judged', 'judges', 'judging', 'judgment', 'judi', 'judicious', 'judy', 'juice', 'julia', 'julian', 'julie', 'juliet', 'july', 'jumbo', 'jump', 'jumped', 'jumping', 'jumps', 'june', 'jungle', 'junior', 'junk', 'jury', 'just', 'justice', 'justification', 'justified', 'justify', 'justin', 'juvenile', 'kaakha', 'kane', 'kansas', 'kapoor', 'kareena', 'karen', 'kargil', 'karl', 'karloff', 'kat', 'kate', 'kathryn', 'kathy', 'katie', 'katsu', 'kaufman', 'kazan', 'keaton', 'keen', 'keep', 'keeping', 'keeps', 'keitel', 'keith', 'keller', 'kells', 'kelly', 'ken', 'kennedy', 'kenner', 'kenneth', 'kent', 'kentucky', 'kept', 'kerr', 'kevin', 'key', 'keyboard', 'khan', 'kibbutz', 'kick', 'kickboxing', 'kicking', 'kid', 'kidding', 'kidman', 'kidnap', 'kidnapped', 'kidnaps', 'kids', 'kill', 'killed', 'killer', 'killers', 'killing', 'killings', 'kills', 'kilmer', 'kim', 'kind', 'kinda', 'kinds', 'king', 'kings', 'kingsley', 'kinky', 'kinnear', 'kirk', 'kirsten', 'kiss', 'kisses', 'kissing', 'kitchen', 'kitten', 'kitty', 'kline', 'knew', 'knife', 'knight', 'knightley', 'knightly', 'knights', 'knock', 'knocked', 'knocks', 'knotts', 'know', 'knowing', 'knowingly', 'knowledge', 'known', 'knows', 'kolchak', 'kong', 'koo', 'korda', 'korea', 'korean', 'kovacs', 'krause', 'krishna', 'kristel', 'kristin', 'krueger', 'kruis', 'kubrick', 'kudos', 'kung', 'kurosawa', 'kurt', 'la', 'lab', 'labeled', 'labor', 'laboratory', 'lacey', 'lack', 'lacked', 'lacking', 'lackluster', 'lacks', 'ladder', 'laden', 'ladies', 'lady', 'lafitte', 'laid', 'lair', 'lake', 'lam', 'lamb', 'lame', 'lamest', 'lamm', 'lampoon', 'lan', 'lana', 'lanchester', 'land', 'landed', 'landing', 'lands', 'landscape', 'landscapes', 'lane', 'lang', 'lange', 'language', 'languages', 'lansbury', 'lara', 'large', 'largely', 'larger', 'larry', 'las', 'last', 'lasted', 'lastly', 'lasts', 'late', 'lately', 'later', 'latest', 'latin', 'latino', 'latter', 'laugh', 'laughable', 'laughably', 'laughed', 'laughing', 'laughs', 'laughter', 'launch', 'launched', 'laura', 'laurel', 'laurence', 'laurie', 'lavish', 'law', 'lawrence', 'laws', 'lawyer', 'lawyers', 'lay', 'layered', 'laying', 'lazy', 'le', 'lead', 'leader', 'leaders', 'leading', 'leads', 'league', 'lean', 'leap', 'leaps', 'learn', 'learned', 'learning', 'learns', 'least', 'leather', 'leave', 'leaves', 'leaving', 'led', 'ledger', 'lee', 'leering', 'left', 'leg', 'legacy', 'legal', 'legend', 'legendary', 'legends', 'legitimate', 'legs', 'leigh', 'lemmon', 'lemon', 'lena', 'lend', 'lends', 'length', 'lengthy', 'lens', 'lent', 'leo', 'leon', 'leonard', 'leonardo', 'lesbian', 'lesbians', 'lesley', 'leslie', 'less', 'lesser', 'lesson', 'lessons', 'lester', 'let', 'letdown', 'lethal', 'lethargic', 'lets', 'letter', 'letters', 'letting', 'levant', 'level', 'levels', 'levinson', 'lewis', 'lex', 'li', 'liberal', 'liberties', 'liberty', 'librarian', 'library', 'license', 'lie', 'lies', 'lieutenant', 'liev', 'life', 'lifeless', 'lifestyle', 'lifetime', 'lift', 'lifted', 'lifts', 'light', 'lighten', 'lighter', 'lighthearted', 'lighting', 'lightly', 'lightning', 'lights', 'lightweight', 'likable', 'like', 'likeable', 'liked', 'likely', 'likes', 'likewise', 'liking', 'lillian', 'limit', 'limitations', 'limited', 'limits', 'lin', 'lincoln', 'linda', 'lindsey', 'lindy', 'line', 'linear', 'liners', 'lines', 'lingers', 'link', 'linked', 'lion', 'lionel', 'lip', 'lips', 'liquor', 'lisa', 'list', 'listed', 'listen', 'listened', 'listening', 'lit', 'literal', 'literally', 'literary', 'literature', 'lithgow', 'little', 'liu', 'liv', 'live', 'lived', 'lively', 'lives', 'livien', 'living', 'lizard', 'll', 'lloyd', 'lo', 'load', 'loaded', 'loads', 'loc', 'local', 'locale', 'locales', 'locals', 'located', 'location', 'locations', 'lochlyn', 'lock', 'locked', 'locks', 'log', 'logan', 'loggia', 'logic', 'logical', 'lohan', 'lohman', 'lois', 'lol', 'lola', 'lombard', 'london', 'lone', 'loneliness', 'lonely', 'long', 'longer', 'longest', 'longing', 'longoria', 'loni', 'look', 'looked', 'looking', 'looks', 'loomis', 'loopholes', 'loose', 'loosely', 'lord', 'lordi', 'lore', 'loren', 'los', 'lose', 'loser', 'losers', 'loses', 'losing', 'loss', 'lost', 'lot', 'lotr', 'lots', 'loud', 'loudly', 'louis', 'louise', 'lousy', 'lovable', 'love', 'loved', 'lovely', 'lover', 'lovers', 'loves', 'loving', 'lovingly', 'low', 'lower', 'lowered', 'lowering', 'lowest', 'loy', 'loyal', 'loyalist', 'loyalty', 'lt', 'luc', 'lucas', 'luciano', 'lucien', 'lucifer', 'lucile', 'lucille', 'lucio', 'luck', 'luckily', 'lucky', 'lucy', 'ludicrous', 'ludicrously', 'ludlow', 'lugosi', 'luis', 'luise', 'lukas', 'luke', 'lulu', 'lumet', 'lumiere', 'lumley', 'lump', 'lunatic', 'lunch', 'lundgren', 'lung', 'lungs', 'lupino', 'lure', 'lured', 'lurking', 'lush', 'lust', 'lusting', 'lycanthrope', 'lydia', 'lying', 'lyle', 'lynch', 'lynchian', 'lyrics', 'ma', 'mabel', 'macarthur', 'macbeth', 'macek', 'machine', 'machinery', 'machines', 'macintosh', 'mack', 'maclaine', 'macmurray', 'macy', 'mad', 'made', 'madeleine', 'madhubala', 'madhur', 'madison', 'madly', 'madman', 'madness', 'madonna', 'madsen', 'mae', 'mafia', 'magazine', 'magazines', 'maggie', 'magic', 'magical', 'magically', 'magician', 'magnificent', 'maher', 'maid', 'mail', 'main', 'mainland', 'mainly', 'mainstream', 'maintain', 'maintained', 'maintaining', 'maintains', 'major', 'majority', 'make', 'maker', 'makers', 'makes', 'makeup', 'making', 'mala', 'malcolm', 'malden', 'male', 'males', 'maltese', 'maléfique', 'mama', 'mammy', 'man', 'manage', 'managed', 'management', 'manager', 'manages', 'manhattan', 'manhood', 'maniac', 'manic', 'manipulated', 'manipulation', 'manipulative', 'mankind', 'mann', 'mannequin', 'manner', 'mannered', 'mannerisms', 'manners', 'manor', 'manos', 'mansion', 'manufactured', 'manuscript', 'many', 'map', 'mara', 'marathon', 'marc', 'marcello', 'march', 'marching', 'marcie', 'marcus', 'margaret', 'margarita', 'margin', 'marginally', 'margret', 'maria', 'marie', 'marijuana', 'marina', 'marine', 'marines', 'mario', 'marion', 'marisa', 'marischka', 'marital', 'mark', 'marked', 'market', 'marketed', 'marketing', 'marks', 'marky', 'marlene', 'marlon', 'marquez', 'marred', 'marriage', 'married', 'marries', 'marry', 'marrying', 'mars', 'marshal', 'marshall', 'mart', 'martha', 'martial', 'martian', 'martians', 'martin', 'marvel', 'marvelous', 'marx', 'mary', 'marylin', 'masculine', 'mask', 'masked', 'masks', 'maslin', 'mason', 'mass', 'massacre', 'masses', 'massey', 'massive', 'master', 'mastered', 'masterful', 'masterfully', 'mastermind', 'masterpiece', 'masterpieces', 'masters', 'masterson', 'mastroianni', 'masturbation', 'match', 'matched', 'matches', 'mate', 'material', 'mates', 'mathieu', 'matrix', 'matt', 'matte', 'matter', 'matters', 'matthau', 'matthew', 'matthews', 'mature', 'maturity', 'maudlin', 'maureen', 'maverick', 'mawkish', 'max', 'maxwell', 'may', 'maya', 'maybe', 'mayhem', 'maze', 'mcadams', 'mccallum', 'mccarthy', 'mcclure', 'mcconaughey', 'mccord', 'mccoy', 'mccrea', 'mcdermott', 'mcdoakes', 'mcdowell', 'mcgavin', 'mcgrath', 'mcgregor', 'mcintyre', 'mclaglen', 'mcnamara', 'mcnealy', 'mcqueen', 'me', 'meal', 'meals', 'mean', 'meandering', 'meanders', 'meaning', 'meaningful', 'meaningless', 'means', 'meant', 'meantime', 'meanwhile', 'measure', 'measured', 'meat', 'mecha', 'mechanic', 'mechanical', 'mechanism', 'medal', 'meddling', 'media', 'medical', 'medication', 'medicine', 'medieval', 'mediocre', 'mediocrity', 'meditation', 'medium', 'medley', 'medved', 'meet', 'meeting', 'meetings', 'meets', 'meg', 'mega', 'megan', 'mehndi', 'mel', 'melancholy', 'melbourne', 'melinda', 'melissa', 'melodies', 'melodrama', 'melodramas', 'melodramatic', 'melody', 'melting', 'melville', 'melvin', 'melvyn', 'member', 'members', 'memento', 'memoirs', 'memorable', 'memorably', 'memorial', 'memories', 'memory', 'memphis', 'men', 'menace', 'menacing', 'mencia', 'mendes', 'mental', 'mentality', 'mentally', 'mention', 'mentioned', 'mentioning', 'mentions', 'mentor', 'menu', 'menzies', 'merchandise', 'mercifully', 'mercy', 'mere', 'meredith', 'merely', 'merge', 'merit', 'merits', 'merk', 'merle', 'merlin', 'mermaid', 'merry', 'meryl', 'mesmerized', 'mesmerizing', 'mess', 'message', 'messages', 'messed', 'messing', 'messy', 'met', 'metal', 'metaphor', 'metaphysical', 'meter', 'method', 'methods', 'metropolis', 'mexican', 'mexicans', 'mexico', 'meyer', 'mgm', 'mice', 'michael', 'michell', 'michelle', 'mickey', 'microfilm', 'microphone', 'mid', 'middle', 'midget', 'midnight', 'midst', 'might', 'mighty', 'miike', 'mike', 'mild', 'mildly', 'mile', 'miles', 'military', 'milk', 'mill', 'milland', 'miller', 'million', 'millionaire', 'millions', 'mills', 'milverton', 'mimic', 'min', 'mind', 'minded', 'mindless', 'minds', 'mine', 'mini', 'minimal', 'minimum', 'mining', 'minions', 'miniseries', 'minister', 'minor', 'mins', 'minus', 'minute', 'minutes', 'miou', 'mira', 'miracle', 'miracles', 'miraculously', 'miraglia', 'mirror', 'mirrors', 'misadventures', 'miscast', 'miscasting', 'miserable', 'miserably', 'misery', 'misfits', 'misfortune', 'misguided', 'misleading', 'mismatched', 'miss', 'missed', 'misses', 'missile', 'missing', 'mission', 'missouri', 'mist', 'mistake', 'mistaken', 'mistakes', 'mister', 'mistreated', 'mistress', 'misty', 'misunderstood', 'mitchell', 'mitchum', 'mix', 'mixed', 'mixing', 'mixture', 'miyazaki', 'mob', 'mobile', 'moby', 'mock', 'mockery', 'mocking', 'mockumentary', 'mode', 'model', 'models', 'modern', 'modest', 'modesty', 'modification', 'moe', 'mole', 'molested', 'molly', 'mom', 'moment', 'moments', 'momentum', 'mommy', 'mon', 'monaghan', 'monastery', 'monday', 'money', 'monique', 'monitor', 'monk', 'monkey', 'monkeys', 'monks', 'monologue', 'monopoly', 'monotonous', 'monroe', 'monster', 'monsters', 'monstrous', 'montage', 'montana', 'montgomery', 'month', 'months', 'monty', 'monumental', 'mood', 'moodiness', 'moody', 'moon', 'moonlighting', 'moonstruck', 'moore', 'moorehead', 'moose', 'mop', 'mopsy', 'moral', 'morale', 'morales', 'moralistic', 'morality', 'morally', 'morals', 'morbid', 'more', 'moreover', 'mores', 'morgan', 'morgana', 'morgue', 'moriarty', 'mormons', 'morning', 'moron', 'moronic', 'moronie', 'morons', 'morricone', 'morris', 'mortal', 'mortensen', 'morton', 'moss', 'most', 'mostly', 'motel', 'mother', 'mothers', 'motif', 'motion', 'motions', 'motivate', 'motivation', 'motivations', 'motive', 'motives', 'motorcycle', 'moulin', 'mountain', 'mountains', 'mounted', 'mouse', 'mouth', 'mouthed', 'mouths', 'move', 'moved', 'movement', 'movements', 'moves', 'movie', 'moviegoers', 'movies', 'moving', 'mozart', 'mr', 'mrs', 'ms', 'mst3k', 'mtv', 'much', 'muck', 'mud', 'muddled', 'muffled', 'mulholland', 'muller', 'mullet', 'multi', 'multiple', 'mum', 'mummy', 'munchies', 'mundane', 'muni', 'muppets', 'murder', 'murdered', 'murderer', 'murderers', 'murdering', 'murderous', 'murders', 'murphy', 'murray', 'muscle', 'museum', 'music', 'musical', 'musicals', 'musician', 'musicians', 'muslim', 'muslims', 'must', 'muster', 'mutant', 'mutants', 'mute', 'mutilated', 'muttering', 'my', 'myers', 'myles', 'myriad', 'myrna', 'myrtle', 'myself', 'mysteries', 'mysterious', 'mysteriously', 'mystery', 'mystic', 'mystical', 'myth', 'myths', 'nah', 'nail', 'nails', 'naive', 'naked', 'nam', 'name', 'named', 'namely', 'names', 'naming', 'nana', 'nancy', 'nandini', 'nap', 'narration', 'narrative', 'narratives', 'narrator', 'narrow', 'nary', 'nascar', 'nastasya', 'nasty', 'natalie', 'natasha', 'nath', 'nathan', 'nation', 'national', 'nationalist', 'nations', 'native', 'natural', 'naturalistic', 'naturally', 'nature', 'natured', 'naughty', 'nausicaa', 'naval', 'navy', 'nazi', 'nbc', 'ne', 'near', 'nearby', 'nearly', 'neat', 'neatly', 'necessarily', 'necessary', 'necessity', 'neck', 'ned', 'need', 'needed', 'needless', 'needlessly', 'needs', 'neff', 'negative', 'neglect', 'neglected', 'neglects', 'negligible', 'neighbor', 'neighborhood', 'neighbors', 'neil', 'neill', 'neither', 'nell', 'nelson', 'nemesis', 'neo', 'nephew', 'nerd', 'nerve', 'nerves', 'nervous', 'ness', 'nest', 'netflix', 'network', 'networks', 'neurotic', 'never', 'nevertheless', 'new', 'newcomer', 'newer', 'newman', 'newmar', 'news', 'newspaper', 'newspapers', 'newsreel', 'next', 'nice', 'nicely', 'niche', 'nicholas', 'nicholson', 'nick', 'nickelodeon', 'nicolas', 'nicole', 'niece', 'nifty', 'nigel', 'nigh', 'night', 'nightmare', 'nightmares', 'nights', 'nina', 'nine', 'nineties', 'ninety', 'ninja', 'ninjas', 'niro', 'nite', 'niven', 'no', 'noah', 'noam', 'noble', 'nobody', 'nod', 'nods', 'noir', 'noirs', 'noise', 'noises', 'nolan', 'nolte', 'nominated', 'nomination', 'nominations', 'non', 'none', 'nonetheless', 'nonsense', 'nonsensical', 'noodle', 'noon', 'nope', 'nor', 'norm', 'norma', 'normal', 'normally', 'norman', 'norris', 'north', 'northam', 'northern', 'norwegian', 'nose', 'nostalgia', 'nostalgic', 'not', 'notable', 'notably', 'notch', 'note', 'noted', 'notes', 'nothing', 'notice', 'noticeable', 'noticed', 'noticing', 'notion', 'notoriety', 'notorious', 'notre', 'novak', 'novel', 'novelist', 'novels', 'novelty', 'november', 'now', 'nowadays', 'nowhere', 'nr', 'nuclear', 'nude', 'nudity', 'numar', 'number', 'numbers', 'numbing', 'numerous', 'nun', 'nuns', 'nurse', 'nut', 'nuts', 'nutshell', 'nutty', 'ny', 'nyc', 'nymphs', 'nz', 'oberon', 'object', 'objective', 'objectively', 'objects', 'obligated', 'obligatory', 'oblivious', 'obnoxious', 'obscene', 'obscure', 'obscurity', 'observation', 'observations', 'observe', 'observed', 'observer', 'observes', 'observing', 'obsessed', 'obsession', 'obsessive', 'obstacle', 'obstacles', 'obtain', 'obvious', 'obviously', 'oc', 'occasion', 'occasional', 'occasionally', 'occasions', 'occupation', 'occupied', 'occur', 'occurred', 'occurrence', 'occurrences', 'occurring', 'occurs', 'ocean', 'oceans', 'october', 'odd', 'oddball', 'oddly', 'odds', 'odin', 'odyssey', 'oedipal', 'oeuvre', 'of', 'off', 'offbeat', 'offence', 'offend', 'offended', 'offender', 'offenders', 'offense', 'offensive', 'offer', 'offered', 'offering', 'offerings', 'offers', 'office', 'officer', 'officers', 'offices', 'official', 'offs', 'oft', 'often', 'oh', 'oil', 'ok', 'okay', 'oklahoma', 'ol', 'old', 'older', 'oldest', 'olds', 'ole', 'olen', 'olive', 'oliver', 'olivia', 'olivier', 'ollie', 'olympic', 'olympics', 'om', 'omar', 'omen', 'omg', 'ominous', 'on', 'once', 'ond', 'one', 'ones', 'ongoing', 'online', 'only', 'onto', 'open', 'opened', 'opener', 'opening', 'openly', 'opens', 'opera', 'operatic', 'operating', 'operation', 'ophelia', 'opinion', 'opinions', 'opponents', 'opportunities', 'opportunity', 'opposed', 'opposing', 'opposite', 'opposition', 'oppressed', 'oppressive', 'optimism', 'optimistic', 'option', 'opus', 'or', 'oral', 'orange', 'orbit', 'orca', 'orchestra', 'orchid', 'orcs', 'ordeal', 'order', 'ordered', 'orders', 'ordinary', 'organ', 'organization', 'organized', 'orgy', 'oriented', 'origin', 'original', 'originality', 'originally', 'originals', 'originated', 'origins', 'orlando', 'orleans', 'orphanage', 'orson', 'oscar', 'oscars', 'ostensibly', 'othello', 'other', 'others', 'otherwise', 'ought', 'ounce', 'our', 'ourselves', 'out', 'outbreak', 'outcome', 'outdated', 'outdoor', 'outer', 'outfit', 'outfits', 'outing', 'outlandish', 'outline', 'outrageous', 'outrageously', 'outright', 'outs', 'outset', 'outside', 'outstanding', 'outta', 'over', 'overacted', 'overacting', 'overall', 'overbearing', 'overblown', 'overcome', 'overcomes', 'overcoming', 'overdone', 'overhead', 'overlong', 'overlook', 'overlooked', 'overly', 'overrated', 'overt', 'overtones', 'overused', 'overwhelming', 'owed', 'owes', 'owl', 'own', 'owned', 'owner', 'owners', 'owning', 'oz', 'ozzie', 'pa', 'pace', 'paced', 'pacing', 'pacino', 'pack', 'package', 'packaging', 'packed', 'packs', 'pad', 'padded', 'padding', 'page', 'pages', 'paid', 'pain', 'painful', 'painfully', 'pains', 'paint', 'painted', 'painting', 'paintings', 'pair', 'paired', 'pairings', 'pal', 'palace', 'palance', 'pale', 'palestinian', 'palette', 'palm', 'paltrow', 'pam', 'pamela', 'pan', 'panahi', 'pancake', 'panic', 'pans', 'pants', 'paper', 'papers', 'paquin', 'par', 'parable', 'parade', 'paradise', 'paragraph', 'parallel', 'parallels', 'paramount', 'paranoia', 'pardon', 'parent', 'parents', 'paris', 'park', 'parker', 'parking', 'parks', 'parodies', 'parody', 'parrot', 'part', 'partially', 'participants', 'participate', 'participating', 'participation', 'particular', 'particularly', 'parties', 'partly', 'partner', 'partners', 'parts', 'party', 'partying', 'pas', 'pass', 'passable', 'passage', 'passages', 'passed', 'passes', 'passing', 'passion', 'passionate', 'passions', 'passive', 'past', 'pastiche', 'pat', 'patch', 'patekar', 'path', 'pathetic', 'pathological', 'pathos', 'paths', 'patience', 'patient', 'patients', 'patricia', 'patrick', 'patriotism', 'patsy', 'pattern', 'patti', 'patton', 'patty', 'paul', 'paulie', 'pause', 'pavarotti', 'pawns', 'paxton', 'pay', 'paycheck', 'paying', 'pays', 'paz', 'pbs', 'pc', 'peace', 'peaceful', 'peak', 'peaked', 'peaks', 'pearl', 'peck', 'peculiar', 'pedestrian', 'peek', 'pegg', 'pei', 'penalty', 'pendleton', 'penelope', 'penguin', 'penis', 'penn', 'penny', 'people', 'peoples', 'per', 'perceived', 'percent', 'perception', 'perdition', 'perfect', 'perfection', 'perfectly', 'perform', 'performance', 'performances', 'performed', 'performer', 'performers', 'performing', 'performs', 'perhaps', 'peril', 'period', 'periods', 'peripheral', 'perished', 'perplexed', 'perry', 'person', 'persona', 'personal', 'personalities', 'personality', 'personally', 'persons', 'perspective', 'perspectives', 'persuades', 'perverse', 'pesci', 'pet', 'pete', 'peter', 'peters', 'petty', 'pg', 'phantasm', 'phantom', 'phase', 'phenomenal', 'phenomenon', 'phil', 'philip', 'phillip', 'phillips', 'philo', 'philosophical', 'philosophy', 'phone', 'phones', 'phony', 'photo', 'photograph', 'photographed', 'photographer', 'photographic', 'photographs', 'photography', 'photos', 'phrase', 'physical', 'physically', 'physics', 'piano', 'pick', 'picked', 'pickford', 'picking', 'picks', 'pickup', 'picky', 'picnic', 'picture', 'pictures', 'pie', 'piece', 'pieces', 'pierce', 'pierre', 'pig', 'pigs', 'pile', 'pillow', 'pills', 'pilot', 'pilots', 'pimlico', 'pin', 'pine', 'pink', 'pirate', 'pirates', 'pistols', 'pit', 'pitch', 'pitched', 'pitiful', 'pits', 'pitt', 'pity', 'pivotal', 'pizza', 'place', 'placed', 'placement', 'places', 'placid', 'plague', 'plagues', 'plain', 'plan', 'plane', 'planes', 'planet', 'planned', 'planning', 'plans', 'plant', 'plants', 'plastic', 'plate', 'plausible', 'play', 'played', 'player', 'players', 'playful', 'playing', 'plays', 'playwright', 'pleasant', 'pleasantly', 'please', 'pleased', 'pleasing', 'pleasure', 'plenty', 'plight', 'plodding', 'plot', 'plots', 'plotted', 'plotting', 'ploy', 'plummer', 'plus', 'pocket', 'pod', 'poe', 'poem', 'poetic', 'poetry', 'poignant', 'point', 'pointed', 'pointing', 'pointless', 'points', 'poison', 'poitier', 'pokemon', 'pokes', 'pokémon', 'polanski', 'police', 'policemen', 'polished', 'political', 'politically', 'politician', 'politicians', 'politics', 'pollack', 'polly', 'pompous', 'ponder', 'ponderous', 'poo', 'pool', 'poor', 'poorest', 'poorly', 'pop', 'popcorn', 'popped', 'popping', 'poppins', 'pops', 'popular', 'popularity', 'population', 'porn', 'porno', 'pornographic', 'porter', 'portion', 'portions', 'portrait', 'portray', 'portrayal', 'portrayals', 'portrayed', 'portraying', 'portrays', 'portugal', 'portuguese', 'posed', 'posey', 'posing', 'position', 'positive', 'positively', 'possessed', 'possesses', 'possession', 'possibilities', 'possibility', 'possible', 'possibly', 'post', 'posted', 'poster', 'posters', 'postman', 'pot', 'potato', 'potential', 'potentially', 'potter', 'potts', 'pounds', 'pour', 'poverty', 'powell', 'power', 'powered', 'powerful', 'powerfully', 'powers', 'ppv', 'practical', 'practically', 'practice', 'praise', 'praised', 'pranks', 'pray', 'praying', 'pre', 'preacher', 'preaching', 'preachy', 'preceded', 'precious', 'precise', 'precisely', 'precision', 'predecessor', 'predicament', 'predict', 'predictability', 'predictable', 'predictably', 'prefer', 'preferably', 'preferred', 'prefers', 'pregnancy', 'pregnant', 'preity', 'prejudice', 'premiere', 'premiered', 'preminger', 'premise', 'preparation', 'prepare', 'prepared', 'preparing', 'prequel', 'presence', 'present', 'presentation', 'presented', 'presenting', 'presents', 'president', 'presidential', 'press', 'pressed', 'pressure', 'prestigious', 'preston', 'presumably', 'presumed', 'pretend', 'pretending', 'pretends', 'pretension', 'pretentious', 'pretentiousness', 'pretty', 'prevalent', 'prevent', 'prevented', 'preventing', 'prevents', 'preview', 'previews', 'previous', 'previously', 'prey', 'price', 'priceless', 'pride', 'priest', 'priests', 'primal', 'primarily', 'primary', 'prime', 'primitive', 'prince', 'princess', 'principal', 'principals', 'principle', 'print', 'prior', 'prison', 'prisoner', 'prisoners', 'private', 'privileged', 'priya', 'pro', 'probably', 'problem', 'problems', 'procedure', 'proceed', 'proceeded', 'proceedings', 'proceeds', 'process', 'prodigy', 'produce', 'produced', 'producer', 'producers', 'produces', 'producing', 'product', 'production', 'productions', 'productive', 'products', 'profanity', 'profession', 'professional', 'professionals', 'professor', 'profile', 'profit', 'profound', 'profoundly', 'program', 'programmers', 'programming', 'programs', 'progress', 'progressed', 'progresses', 'progressive', 'project', 'projected', 'projection', 'projector', 'projects', 'prolific', 'prominent', 'promise', 'promised', 'promising', 'promoted', 'promoting', 'promptly', 'prone', 'pronounce', 'proof', 'prop', 'propaganda', 'proper', 'properly', 'property', 'prophetic', 'proposes', 'props', 'pros', 'prospect', 'prostitute', 'prostitution', 'protagonist', 'protagonists', 'protect', 'protection', 'protest', 'prototype', 'protracted', 'proud', 'prove', 'proved', 'proverbial', 'proves', 'provide', 'provided', 'provides', 'providing', 'proving', 'provo', 'provocative', 'provoke', 'provoking', 'ps', 'pseudo', 'psyche', 'psychedelic', 'psychiatric', 'psychiatrist', 'psychic', 'psycho', 'psychological', 'psychologically', 'psychologist', 'psychology', 'psychopath', 'psychotic', 'puberty', 'public', 'publicity', 'puerto', 'puff', 'puke', 'pull', 'pulled', 'pulling', 'pullman', 'pulls', 'pulp', 'pulse', 'pun', 'punch', 'punches', 'punish', 'punishment', 'punk', 'puppet', 'puppetry', 'puppets', 'puppy', 'purchase', 'purchased', 'pure', 'purely', 'puri', 'purple', 'purports', 'purpose', 'purposes', 'purse', 'pursue', 'pursued', 'pursues', 'pursuing', 'pursuit', 'purvis', 'push', 'pushed', 'pushes', 'pushing', 'put', 'puts', 'putting', 'puzzle', 'pyramid', 'python', 'quaid', 'qualifies', 'qualify', 'qualities', 'quality', 'quantum', 'quarter', 'quarters', 'quasi', 'queen', 'queens', 'quentin', 'quest', 'question', 'questionable', 'questions', 'quick', 'quickly', 'quiet', 'quietly', 'quigley', 'quincy', 'quinn', 'quintessential', 'quirky', 'quite', 'quotable', 'quote', 'quotes', 'ra', 'rabbit', 'rabbits', 'race', 'races', 'rachel', 'racial', 'racism', 'racist', 'rack', 'radiation', 'radical', 'radio', 'raffles', 'rage', 'ragged', 'raging', 'raid', 'railly', 'railroad', 'rain', 'rainer', 'raines', 'rains', 'rainy', 'raise', 'raised', 'raises', 'raising', 'raj', 'rajinikanth', 'ralph', 'rama', 'rambling', 'ramblings', 'rambo', 'rammed', 'rampage', 'ran', 'randolph', 'random', 'randomly', 'randy', 'rang', 'range', 'ranger', 'rangers', 'ranging', 'rani', 'rank', 'ranking', 'ranks', 'rant', 'raoul', 'rap', 'rape', 'raped', 'rapid', 'rapidly', 'rapist', 'raptor', 'rapture', 'rare', 'rarely', 'rat', 'rate', 'rated', 'rathbone', 'rather', 'rating', 'ratings', 'rational', 'rats', 'ratso', 'raunchy', 'rave', 'raven', 'raw', 'ray', 'raymond', 'razor', 're', 'rea', 'reach', 'reached', 'reaches', 'reaching', 'react', 'reaction', 'reactions', 'read', 'reader', 'readily', 'reading', 'reads', 'ready', 'reagan', 'real', 'realise', 'realised', 'realism', 'realistic', 'realities', 'reality', 'realization', 'realize', 'realized', 'realizes', 'realizing', 'really', 'realm', 'rear', 'reason', 'reasonable', 'reasonably', 'reasoning', 'reasons', 'rebel', 'rebellious', 'recall', 'recalled', 'receive', 'received', 'receives', 'receiving', 'recent', 'recently', 'reception', 'recognise', 'recognition', 'recognizable', 'recognize', 'recognized', 'recommend', 'recommendation', 'recommended', 'record', 'recorded', 'recording', 'records', 'recover', 'recovering', 'recovers', 'recreate', 'recurring', 'recycled', 'red', 'redeem', 'redeemed', 'redeeming', 'redemption', 'redford', 'redgrave', 'redneck', 'reduced', 'redundant', 'reed', 'reel', 'reeve', 'reeves', 'refer', 'reference', 'references', 'referred', 'referring', 'reflect', 'reflected', 'reflecting', 'reflection', 'reflections', 'reflects', 'refreshing', 'refuse', 'refused', 'refuses', 'regard', 'regarded', 'regarding', 'regardless', 'regards', 'regime', 'regiment', 'region', 'register', 'regret', 'regular', 'rehearsal', 'rehearsed', 'reid', 'reign', 'reinforces', 'reject', 'rejected', 'rejection', 'rejects', 'relate', 'related', 'relates', 'relation', 'relations', 'relationship', 'relationships', 'relative', 'relatively', 'relatives', 'release', 'released', 'releases', 'releasing', 'relentless', 'relentlessly', 'relevance', 'relevant', 'reliable', 'relied', 'relief', 'relies', 'religion', 'religious', 'relive', 'reluctant', 'reluctantly', 'rely', 'relying', 'remade', 'remain', 'remainder', 'remained', 'remaining', 'remains', 'remake', 'remakes', 'remaking', 'remark', 'remarkable', 'remarkably', 'remarks', 'remember', 'remembered', 'remembering', 'remembers', 'remind', 'reminded', 'reminding', 'reminds', 'reminiscent', 'remote', 'remotely', 'remove', 'removed', 'rendered', 'rendering', 'rendition', 'renegade', 'renoir', 'rent', 'rental', 'rented', 'renting', 'rep', 'repair', 'repeat', 'repeated', 'repeatedly', 'repeating', 'repeats', 'repertoire', 'repetitive', 'replace', 'replaced', 'replacement', 'replacing', 'replay', 'replies', 'report', 'reportedly', 'reporter', 'reports', 'represent', 'representation', 'representative', 'represented', 'represents', 'repressed', 'republic', 'repulsion', 'repulsive', 'reputation', 'request', 'require', 'required', 'requires', 'requisite', 'rerun', 'rescue', 'rescued', 'rescues', 'research', 'researched', 'resemblance', 'resemblances', 'resemble', 'resembled', 'resembles', 'reserved', 'residence', 'resident', 'resist', 'resolution', 'resolve', 'resolving', 'resort', 'resorting', 'resources', 'respect', 'respectable', 'respected', 'respective', 'respectively', 'respects', 'respond', 'responds', 'response', 'responsibility', 'responsible', 'rest', 'restaurant', 'restless', 'restoration', 'restored', 'rests', 'result', 'resulted', 'resulting', 'results', 'resume', 'resurrected', 'retains', 'retarded', 'retelling', 'retire', 'retired', 'retirement', 'retrieve', 'return', 'returned', 'returning', 'returns', 'reuben', 'reunion', 'reunited', 'reveal', 'revealed', 'revealing', 'reveals', 'revelation', 'revenge', 'reverse', 'reversed', 'review', 'reviewed', 'reviewer', 'reviewers', 'reviewing', 'reviews', 'revived', 'revolting', 'revolution', 'revolutionary', 'revolver', 'revolves', 'reward', 'rewarded', 'rewarding', 'rewards', 'rewind', 'rewrite', 'rex', 'reynolds', 'rhys', 'rhythm', 'ribs', 'rich', 'richard', 'richards', 'richardson', 'richie', 'richly', 'rick', 'rid', 'ridden', 'ride', 'riders', 'rides', 'ridge', 'ridiculous', 'ridiculously', 'riding', 'rifle', 'right', 'righteous', 'rightfully', 'rightly', 'rights', 'riley', 'rinaldi', 'ring', 'ringmaster', 'ringo', 'rings', 'riot', 'rip', 'ripe', 'ripoff', 'ripped', 'ripping', 'rips', 'rise', 'rises', 'rising', 'risk', 'risking', 'risks', 'risky', 'rita', 'ritchie', 'ritter', 'ritual', 'rival', 'river', 'rivers', 'riveting', 'rko', 'roach', 'road', 'roadkill', 'roads', 'roar', 'roaring', 'roars', 'rob', 'robbed', 'robber', 'robbers', 'robbery', 'robbing', 'robbins', 'robert', 'roberts', 'robertson', 'robin', 'robinson', 'robot', 'robotech', 'robotic', 'robots', 'rochester', 'rock', 'rocket', 'rockets', 'rockin', 'rocking', 'rocks', 'rockstar', 'rockwell', 'rocky', 'rod', 'rodder', 'rodgers', 'rodriguez', 'roeg', 'rogen', 'roger', 'rogers', 'role', 'roles', 'roll', 'rolled', 'roller', 'rolling', 'rolls', 'roman', 'romance', 'romantic', 'romantically', 'romanticism', 'rome', 'romeo', 'romero', 'romp', 'romy', 'ron', 'roo', 'roof', 'rooker', 'rookie', 'room', 'roommate', 'rooms', 'rooney', 'root', 'rooting', 'roots', 'rope', 'rosario', 'rose', 'rosemary', 'rosie', 'ross', 'roth', 'rotten', 'rotting', 'rouge', 'rough', 'roughly', 'round', 'rounded', 'rounds', 'rousing', 'route', 'routine', 'routines', 'row', 'rowlands', 'roy', 'royal', 'rub', 'rubber', 'rubbish', 'ruben', 'ruby', 'rudd', 'rude', 'rudimentary', 'rugged', 'ruin', 'ruined', 'ruining', 'ruins', 'ruiz', 'rule', 'ruled', 'rules', 'rumor', 'rumored', 'rumors', 'run', 'runner', 'running', 'runs', 'rural', 'rush', 'rushed', 'rushes', 'russell', 'russian', 'russians', 'russo', 'rusty', 'ruth', 'ruthless', 'ruthlessly', 'rvd', 'ryan', 'ryu', 'sabretooth', 'sabrina', 'sacrifice', 'sacrificed', 'sacrificing', 'sad', 'sadder', 'sadistic', 'sadly', 'sadness', 'safe', 'safely', 'safety', 'saffron', 'saga', 'said', 'saif', 'sailor', 'saint', 'sakamoto', 'sake', 'salaam', 'sale', 'salem', 'sales', 'salesman', 'sally', 'salman', 'salt', 'salvation', 'sam', 'samantha', 'same', 'sammi', 'samuel', 'samurai', 'san', 'sand', 'sandler', 'sandy', 'sane', 'sang', 'sanity', 'sanjay', 'sank', 'sans', 'sant', 'santa', 'sappy', 'sara', 'sarah', 'sarcasm', 'sarcastic', 'sargent', 'sasquatch', 'sassy', 'sat', 'satan', 'satire', 'satirical', 'satisfied', 'satisfy', 'satisfying', 'saturday', 'saturn', 'saura', 'savage', 'save', 'saved', 'saves', 'saving', 'savior', 'saw', 'say', 'saying', 'says', 'scaffolding', 'scale', 'scare', 'scarecrow', 'scarecrows', 'scared', 'scares', 'scarf', 'scariest', 'scary', 'scenario', 'scenarios', 'scene', 'scenery', 'scenes', 'scenic', 'scheider', 'scheme', 'schemes', 'scheming', 'schlock', 'schlocky', 'schneebaum', 'school', 'schools', 'schumacher', 'schwarzenegger', 'sci', 'science', 'scientific', 'scientist', 'scientists', 'scifi', 'scooby', 'score', 'scored', 'scores', 'scorned', 'scorsese', 'scott', 'scottish', 'scratch', 'scratched', 'scratches', 'scratching', 'scream', 'screamed', 'screaming', 'screams', 'screen', 'screened', 'screening', 'screenplay', 'screens', 'screenwriter', 'screenwriters', 'screw', 'screwball', 'screwed', 'screws', 'script', 'scripted', 'scripting', 'scripts', 'scriptwriter', 'scriptwriters', 'scrooge', 'scurry', 'se', 'sea', 'seamlessly', 'sean', 'search', 'searched', 'searches', 'searching', 'season', 'seasoned', 'seasons', 'seat', 'seats', 'sebastian', 'seberg', 'second', 'secondary', 'secondly', 'seconds', 'secret', 'secretary', 'secretly', 'secrets', 'section', 'sections', 'secular', 'secure', 'security', 'seduction', 'seductive', 'see', 'seed', 'seedy', 'seeing', 'seek', 'seeking', 'seeks', 'seem', 'seemed', 'seeming', 'seemingly', 'seems', 'seen', 'sees', 'segment', 'segments', 'selected', 'selection', 'self', 'selfish', 'sell', 'sellers', 'selling', 'sells', 'semblance', 'semester', 'semi', 'senator', 'send', 'sending', 'sends', 'senile', 'senior', 'sensational', 'sense', 'senseless', 'senses', 'sensibilities', 'sensibility', 'sensible', 'sensitive', 'sensitivity', 'sensual', 'sent', 'sentence', 'sentenced', 'sentences', 'sentiment', 'sentimental', 'sentimentality', 'sentiments', 'sentinel', 'separate', 'separated', 'separation', 'september', 'sequel', 'sequels', 'sequence', 'sequences', 'serbian', 'sergeant', 'serial', 'series', 'serious', 'seriously', 'serum', 'servant', 'servants', 'serve', 'served', 'serves', 'service', 'serviceable', 'services', 'serving', 'session', 'sessions', 'set', 'seth', 'sets', 'setting', 'settings', 'settle', 'settled', 'setup', 'seven', 'seventh', 'seventies', 'seventy', 'several', 'severe', 'severed', 'severely', 'sex', 'sexist', 'sexploitation', 'sexual', 'sexuality', 'sexually', 'sexy', 'seymour', 'sfx', 'sgt', 'sh', 'shack', 'shades', 'shadow', 'shadows', 'shady', 'shae', 'shaft', 'shaggy', 'shahid', 'shake', 'shakes', 'shakespeare', 'shakespearean', 'shaking', 'shakti', 'shaky', 'shall', 'shallow', 'shambles', 'shame', 'shameful', 'shameless', 'shamelessly', 'shantytown', 'shaolin', 'shape', 'shaped', 'shapes', 'shapiro', 'shaq', 'share', 'shared', 'shares', 'sharing', 'shark', 'sharma', 'sharp', 'shatner', 'shattering', 'shaw', 'she', 'shea', 'shed', 'sheen', 'sheer', 'shekhar', 'shelf', 'shell', 'shelley', 'shelly', 'shepard', 'shepherd', 'sheridan', 'sheriff', 'sherlock', 'sherman', 'sherry', 'shes', 'shield', 'shift', 'shifting', 'shine', 'shines', 'shining', 'shiny', 'ship', 'shipman', 'ships', 'shirley', 'shirt', 'shirts', 'shock', 'shocked', 'shocker', 'shocking', 'shockingly', 'shoddy', 'shoe', 'shoes', 'shogunate', 'shoot', 'shooter', 'shooting', 'shootings', 'shootout', 'shoots', 'shop', 'shopping', 'shops', 'shore', 'short', 'shortcomings', 'shortened', 'shorter', 'shortly', 'shorts', 'shot', 'shotgun', 'shots', 'should', 'shoulder', 'shouldn', 'shouting', 'shouts', 'show', 'showcase', 'showcases', 'showdown', 'showed', 'shower', 'showing', 'shown', 'shows', 'shred', 'shrek', 'shrieking', 'shrine', 'shut', 'shy', 'siblings', 'sick', 'sickening', 'sickness', 'side', 'sided', 'sidekick', 'sidekicks', 'sides', 'sidewalk', 'sidney', 'sigh', 'sight', 'sighted', 'sights', 'sign', 'signals', 'signature', 'signed', 'significance', 'significant', 'significantly', 'signs', 'silence', 'silent', 'silliness', 'silly', 'silver', 'silverman', 'similar', 'similarities', 'similarity', 'similarly', 'simira', 'simmons', 'simon', 'simple', 'simpler', 'simplest', 'simplicity', 'simplistic', 'simply', 'simpson', 'simultaneously', 'sin', 'sinatra', 'since', 'sincere', 'sincerely', 'sing', 'singer', 'singers', 'singing', 'single', 'sings', 'sinister', 'sinking', 'sinks', 'sins', 'sir', 'sissi', 'sissy', 'sister', 'sisters', 'sit', 'sitcom', 'site', 'sits', 'sitting', 'situation', 'situations', 'six', 'sixteen', 'sixties', 'sixty', 'size', 'sized', 'skater', 'skeptical', 'sketch', 'skid', 'skies', 'skill', 'skillful', 'skills', 'skin', 'skinned', 'skinny', 'skip', 'skippy', 'skit', 'skits', 'skull', 'sky', 'slam', 'slams', 'slap', 'slapping', 'slapstick', 'slasher', 'slater', 'slave', 'slaves', 'sleazy', 'sleep', 'sleepaway', 'sleeper', 'sleeping', 'sleeps', 'sleepwalkers', 'sleeve', 'sleuth', 'slew', 'slice', 'slick', 'slide', 'sliding', 'slight', 'slightest', 'slightly', 'slim', 'slimy', 'slip', 'slipped', 'slips', 'slipstream', 'sloane', 'sloppy', 'sloth', 'slow', 'slower', 'slowly', 'slug', 'slum', 'sly', 'small', 'smaller', 'smallest', 'smarmy', 'smart', 'smartly', 'smash', 'smashed', 'smells', 'smile', 'smiles', 'smiling', 'smith', 'smoke', 'smoking', 'smooth', 'smuggling', 'snake', 'snakes', 'snappy', 'snatch', 'sneak', 'snipe', 'sniper', 'snipes', 'snippets', 'snitch', 'snl', 'snob', 'snow', 'snuff', 'so', 'soap', 'sober', 'soccer', 'social', 'socialist', 'societal', 'society', 'sock', 'socks', 'soderbergh', 'soft', 'softcore', 'soha', 'sol', 'sold', 'soldier', 'soldiers', 'sole', 'solely', 'soles', 'solid', 'solitary', 'solitude', 'sollett', 'solo', 'solution', 'solutions', 'solvang', 'solve', 'solved', 'some', 'somebody', 'someday', 'somehow', 'someone', 'something', 'somethings', 'sometime', 'sometimes', 'somewhat', 'somewhere', 'son', 'song', 'songs', 'sonia', 'sonic', 'sons', 'sony', 'soon', 'sooner', 'sophia', 'sophie', 'sophisticated', 'sophistication', 'sophomore', 'sordid', 'sorry', 'sort', 'sorts', 'soul', 'souls', 'sound', 'sounded', 'sounding', 'sounds', 'soundstage', 'soundtrack', 'soup', 'source', 'sources', 'south', 'southern', 'soviet', 'sox', 'soylent', 'space', 'spaceship', 'spaceships', 'spacey', 'spade', 'spaghetti', 'spanish', 'spare', 'sparing', 'spark', 'sparked', 'sparkle', 'sparkles', 'sparkling', 'spawn', 'speak', 'speaking', 'speaks', 'spears', 'special', 'specially', 'specials', 'species', 'specific', 'specifically', 'spectacle', 'spectacular', 'spectrum', 'speech', 'speeches', 'speed', 'speeding', 'spell', 'spells', 'spencer', 'spend', 'spending', 'spends', 'spent', 'spider', 'spiderman', 'spielberg', 'spies', 'spike', 'spilling', 'spin', 'spinal', 'spine', 'spirit', 'spirited', 'spiritual', 'spit', 'spite', 'splatter', 'splendid', 'split', 'splitting', 'spock', 'spoil', 'spoiled', 'spoiler', 'spoilers', 'spoiling', 'spoke', 'spoken', 'spontaneous', 'spoof', 'spoofing', 'spoofs', 'spooky', 'sport', 'sports', 'spot', 'spotlight', 'spots', 'spouse', 'spread', 'spree', 'spring', 'springer', 'springs', 'springsteen', 'springwood', 'spy', 'squad', 'squalor', 'squandered', 'square', 'squeamish', 'squeeze', 'ss', 'st', 'stabbed', 'stabbing', 'stability', 'staff', 'stage', 'staged', 'stages', 'stagnant', 'stairs', 'stale', 'stalked', 'stalker', 'stalks', 'stallone', 'stamp', 'stan', 'stance', 'stand', 'standard', 'standards', 'standing', 'standout', 'stands', 'standup', 'stanley', 'stanwyck', 'staple', 'star', 'stare', 'stares', 'stargate', 'staring', 'stark', 'starr', 'starred', 'starring', 'stars', 'start', 'started', 'starters', 'starting', 'startled', 'startling', 'starts', 'starving', 'state', 'stated', 'statement', 'statements', 'states', 'static', 'stating', 'station', 'stations', 'statue', 'stature', 'status', 'stay', 'stayed', 'staying', 'stays', 'steady', 'steal', 'stealing', 'steals', 'steam', 'steamy', 'steel', 'steele', 'steer', 'steiner', 'stella', 'stellar', 'step', 'stephen', 'stepmother', 'stepping', 'steps', 'stepsisters', 'stereo', 'stereotype', 'stereotypes', 'stereotypical', 'stereotyping', 'stern', 'steve', 'steven', 'stevens', 'stew', 'stewart', 'stick', 'sticking', 'sticks', 'stiff', 'stiles', 'still', 'stiller', 'stilted', 'sting', 'stink', 'stinker', 'stinks', 'stock', 'stole', 'stolen', 'stoltz', 'stomach', 'stone', 'stones', 'stood', 'stooges', 'stop', 'stopped', 'stopping', 'stops', 'store', 'stores', 'storey', 'stories', 'storm', 'story', 'storyboard', 'storyline', 'storytelling', 'straight', 'straightforward', 'strained', 'stranded', 'strange', 'strangely', 'stranger', 'strangers', 'strangler', 'strategy', 'stratten', 'stray', 'streak', 'stream', 'streep', 'street', 'streets', 'streetwise', 'streisand', 'strength', 'stress', 'stretch', 'stretched', 'strickland', 'strict', 'strictly', 'strike', 'strikes', 'striking', 'string', 'strings', 'strip', 'stripper', 'stripping', 'strive', 'strives', 'stroke', 'stroker', 'strong', 'stronger', 'strongest', 'strongly', 'struck', 'structure', 'struggle', 'struggled', 'struggles', 'struggling', 'strummer', 'strut', 'strutting', 'stuart', 'stuck', 'stud', 'student', 'students', 'studied', 'studies', 'studio', 'studios', 'study', 'studying', 'stuff', 'stumbled', 'stumbles', 'stunk', 'stunned', 'stunning', 'stunt', 'stunts', 'stupid', 'stupider', 'stupidest', 'stupidity', 'stupidly', 'style', 'styles', 'stylish', 'stylistic', 'stylized', 'suave', 'sub', 'subject', 'subjected', 'subjects', 'submarine', 'subplot', 'subplots', 'subsequent', 'subsequently', 'substance', 'substantial', 'subtitles', 'subtle', 'subtlety', 'subtly', 'suburban', 'subway', 'succeed', 'succeeded', 'succeeds', 'success', 'successes', 'successful', 'successfully', 'succession', 'such', 'suck', 'sucked', 'sucking', 'sucks', 'sudden', 'suddenly', 'sue', 'suffer', 'suffered', 'suffering', 'suffers', 'suffice', 'sufficient', 'sugar', 'suggest', 'suggested', 'suggesting', 'suggestion', 'suggestive', 'suggests', 'suicide', 'suit', 'suitable', 'suitably', 'suited', 'suitors', 'suits', 'sullivan', 'sum', 'summarize', 'summary', 'summation', 'summer', 'summoned', 'sums', 'sun', 'sunday', 'sunk', 'sunny', 'sunset', 'sunshine', 'super', 'superb', 'superbly', 'superficial', 'superhero', 'superior', 'superlative', 'superman', 'supermarionation', 'supermarket', 'supernatural', 'superpowers', 'superstar', 'supplies', 'supply', 'support', 'supported', 'supporting', 'suppose', 'supposed', 'supposedly', 'suppress', 'supreme', 'supremely', 'sure', 'surely', 'surf', 'surface', 'surfing', 'surgeon', 'surgery', 'surprise', 'surprised', 'surprises', 'surprising', 'surprisingly', 'surreal', 'surround', 'surrounded', 'surrounding', 'surroundings', 'survival', 'survive', 'survived', 'survives', 'surviving', 'survivor', 'survivors', 'susan', 'suspect', 'suspected', 'suspects', 'suspend', 'suspense', 'suspenseful', 'suspension', 'suspicion', 'suspicious', 'sustain', 'sutherland', 'suzanne', 'suzette', 'swanson', 'sway', 'swayze', 'swear', 'swearing', 'swedish', 'sweeps', 'sweet', 'sweetheart', 'swept', 'swift', 'swim', 'swimming', 'swing', 'swinging', 'switch', 'switched', 'swoon', 'sword', 'sybil', 'sydney', 'sydow', 'sylvia', 'symbol', 'symbolic', 'symbolism', 'sympathetic', 'sympathise', 'sympathize', 'sympathy', 'sync', 'syndrome', 'synopsis', 'system', 'table', 'tables', 'taboo', 'tack', 'tackle', 'tacky', 'tad', 'taffy', 'tag', 'tail', 'tailor', 'takashi', 'take', 'takechi', 'taken', 'takes', 'taking', 'tale', 'talent', 'talented', 'talentless', 'talents', 'tales', 'talespin', 'talk', 'talked', 'talkie', 'talkies', 'talking', 'talks', 'tall', 'tame', 'tangled', 'tango', 'tanks', 'tanya', 'tap', 'tape', 'taped', 'tapes', 'tapping', 'tara', 'tarantino', 'target', 'targeted', 'targets', 'tarzan', 'tashan', 'task', 'taste', 'tasteful', 'tastes', 'tasty', 'taught', 'taut', 'tax', 'taxi', 'taylor', 'tcm', 'tea', 'teach', 'teacher', 'teachers', 'teaching', 'team', 'teaming', 'tear', 'tearjerker', 'tears', 'tech', 'technical', 'technically', 'technicolor', 'technique', 'techniques', 'techno', 'technological', 'technology', 'ted', 'teddy', 'tedious', 'tediously', 'teen', 'teenage', 'teenager', 'teenagers', 'teens', 'teeth', 'tel', 'telephone', 'television', 'tell', 'telling', 'tells', 'temple', 'tempted', 'ten', 'tenant', 'tend', 'tendency', 'tender', 'tends', 'tennis', 'tense', 'tension', 'tent', 'tepid', 'teresa', 'term', 'terminator', 'terms', 'terrible', 'terribly', 'terrific', 'terrifically', 'terrifying', 'territory', 'terror', 'terrorism', 'terrorists', 'terry', 'tess', 'test', 'testament', 'tested', 'testing', 'tet', 'texas', 'text', 'textile', 'thade', 'thai', 'thailand', 'than', 'thank', 'thankfully', 'thanks', 'that', 'thats', 'the', 'theater', 'theaters', 'theatre', 'theatres', 'theatrical', 'theft', 'their', 'theirs', 'thelma', 'them', 'theme', 'themed', 'themes', 'themselves', 'then', 'theo', 'theories', 'theory', 'therapy', 'there', 'therefore', 'therein', 'thereof', 'these', 'thespian', 'thespians', 'they', 'thhe', 'thick', 'thief', 'thieves', 'thin', 'thing', 'things', 'think', 'thinking', 'thinks', 'thinly', 'third', 'thirties', 'thirty', 'this', 'tho', 'thomas', 'thompson', 'thornton', 'thoroughly', 'those', 'though', 'thought', 'thoughtful', 'thoughts', 'thousand', 'thousands', 'threads', 'threat', 'threatened', 'threatening', 'threats', 'three', 'threw', 'thrill', 'thrilled', 'thriller', 'thrillers', 'thrilling', 'thrills', 'throat', 'throne', 'through', 'throughout', 'throw', 'throwaway', 'throwing', 'thrown', 'throws', 'thru', 'thugs', 'thumbs', 'thunderbirds', 'thurman', 'thus', 'tia', 'tibet', 'tibetan', 'tick', 'ticket', 'tickets', 'tie', 'tied', 'tierney', 'ties', 'tiffany', 'tiger', 'tight', 'till', 'tilly', 'tim', 'timberlake', 'time', 'timed', 'timeless', 'timely', 'times', 'timid', 'timing', 'timmy', 'timothy', 'tina', 'tingler', 'tinted', 'tiny', 'tip', 'tire', 'tired', 'tiresome', 'titanic', 'title', 'titled', 'titles', 'titular', 'to', 'tobias', 'today', 'todd', 'toe', 'together', 'toilet', 'token', 'tokyo', 'told', 'tolerable', 'tolerance', 'tolkien', 'tom', 'tomatoes', 'tomb', 'tomba', 'tomei', 'tommy', 'tomorrow', 'ton', 'tone', 'toned', 'tongue', 'tonight', 'tons', 'tony', 'too', 'took', 'tool', 'tools', 'tooth', 'toots', 'top', 'topic', 'topics', 'topless', 'tops', 'torment', 'tormented', 'torments', 'torn', 'toronto', 'torrance', 'torrence', 'torture', 'tortured', 'torturing', 'toss', 'tossed', 'total', 'totally', 'toto', 'touch', 'touched', 'touches', 'touching', 'tough', 'toughness', 'toupee', 'tour', 'tourist', 'tourists', 'tourneur', 'toward', 'towards', 'tower', 'towers', 'town', 'townsend', 'toxic', 'toy', 'toys', 'trace', 'track', 'trackers', 'tracking', 'tracks', 'tracy', 'trade', 'trademark', 'tradition', 'traditional', 'traffic', 'trafficking', 'tragedy', 'tragic', 'tragically', 'trail', 'trailer', 'trailers', 'train', 'trained', 'training', 'traitor', 'traits', 'tramp', 'trance', 'transcend', 'transcends', 'transfer', 'transferred', 'transformation', 'transformed', 'transition', 'translate', 'translated', 'translation', 'transmitted', 'transparent', 'transport', 'transportation', 'transported', 'transvestite', 'trap', 'trapped', 'traps', 'trash', 'trashed', 'trashy', 'trauma', 'traumatic', 'travel', 'traveling', 'travelling', 'travelogue', 'travels', 'travesty', 'travolta', 'treasure', 'treasury', 'treat', 'treated', 'treating', 'treatment', 'treats', 'trebor', 'tree', 'trees', 'trek', 'trelkovsky', 'tremendous', 'tremendously', 'tremors', 'trend', 'trendy', 'trent', 'trial', 'trials', 'triangle', 'tribal', 'tribe', 'tribes', 'tribute', 'trick', 'tricked', 'tricks', 'trident', 'tried', 'trier', 'tries', 'trigger', 'trilogy', 'trina', 'trinity', 'trio', 'trip', 'tripe', 'triple', 'tripping', 'trippy', 'trips', 'trite', 'triton', 'triumph', 'triumphant', 'trivia', 'trivial', 'trodden', 'trois', 'trojan', 'troma', 'troopers', 'troops', 'trotta', 'trouble', 'troubled', 'troubles', 'troublesome', 'truck', 'true', 'truely', 'truffaut', 'truly', 'truman', 'trumpeter', 'trunk', 'trust', 'trusted', 'truth', 'truthful', 'truthfully', 'truths', 'try', 'trying', 'tub', 'tube', 'tucker', 'tumbling', 'tune', 'tunes', 'tung', 'tunnel', 'turd', 'turgid', 'turkey', 'turkeys', 'turmoil', 'turn', 'turned', 'turner', 'turning', 'turns', 'tv', 'twelve', 'twenty', 'twice', 'twilight', 'twin', 'twins', 'twist', 'twisted', 'twists', 'two', 'tycoon', 'tyler', 'type', 'typed', 'types', 'typical', 'typically', 'typing', 'uber', 'ugh', 'ugly', 'uh', 'uk', 'ultimate', 'ultimately', 'ultra', 'um', 'uma', 'un', 'unable', 'unanswered', 'unaware', 'unbearable', 'unbeknownst', 'unbelievable', 'unbelievably', 'unborn', 'uncanny', 'uncle', 'uncomfortable', 'unconvincing', 'uncreative', 'uncredited', 'uncut', 'undeniably', 'under', 'underdeveloped', 'underdog', 'underground', 'underlying', 'underneath', 'underrated', 'understand', 'understandable', 'understandably', 'understanding', 'understands', 'understated', 'understatement', 'understood', 'undertones', 'underwater', 'underwear', 'underworld', 'undeveloped', 'undoubtedly', 'uneasy', 'unemployed', 'uneven', 'unexpected', 'unexpectedly', 'unexplained', 'unfair', 'unfaithful', 'unfold', 'unfolds', 'unforgettable', 'unfortunate', 'unfortunately', 'unfunny', 'unhappy', 'uniform', 'uniformly', 'uniforms', 'unimaginative', 'uninspired', 'unintentional', 'unintentionally', 'uninteresting', 'union', 'unique', 'unisol', 'unisols', 'unit', 'united', 'universal', 'universe', 'university', 'unknown', 'unless', 'unlikable', 'unlike', 'unlikeable', 'unlikely', 'unnatural', 'unnecessarily', 'unnecessary', 'unnerving', 'unnoticed', 'unoriginal', 'unpleasant', 'unprecedented', 'unpredictable', 'unrated', 'unravel', 'unreal', 'unrealistic', 'unrecognizable', 'unrelated', 'unremarkable', 'unremittingly', 'unresolved', 'unsatisfied', 'unsatisfying', 'unscathed', 'unseen', 'unsettling', 'unsolved', 'unspeakable', 'unsuccessful', 'unsure', 'unsuspecting', 'unsympathetic', 'untalented', 'unthinkable', 'unthoughtful', 'until', 'untimely', 'untrue', 'unusual', 'unusually', 'unveils', 'unwashed', 'unwatchable', 'unwilling', 'unwittingly', 'up', 'upa', 'upbeat', 'upbringing', 'upcoming', 'update', 'updated', 'updates', 'uplifting', 'upon', 'upper', 'ups', 'upset', 'upside', 'uptight', 'urban', 'urge', 'urgent', 'ursula', 'us', 'usa', 'use', 'used', 'useful', 'useless', 'user', 'uses', 'using', 'ustinov', 'usual', 'usually', 'utilized', 'utopia', 'utter', 'utterly', 'uwe', 'vacation', 'vader', 'vague', 'vaguely', 'vain', 'valentine', 'valerie', 'valette', 'valid', 'valley', 'value', 'values', 'vampire', 'vampires', 'van', 'vance', 'vanessa', 'vanishing', 'vanity', 'vapid', 'variation', 'varied', 'variety', 'various', 'vary', 'varying', 'vast', 'vastly', 'vaudeville', 'vault', 'vcr', 've', 'vega', 'vegas', 'vehicle', 'vehicles', 'vein', 'velvet', 'venantini', 'venantino', 'vengeance', 'venture', 'vera', 'verge', 'verhoeven', 'veronica', 'versa', 'verse', 'version', 'versions', 'versus', 'vertigo', 'very', 'veteran', 'veterans', 'vets', 'vhs', 'via', 'vibe', 'vibrancy', 'vibrant', 'vice', 'vices', 'vicious', 'vick', 'victim', 'victims', 'victor', 'victoria', 'victorian', 'victory', 'vida', 'video', 'videos', 'vienna', 'viet', 'vietnam', 'vietnamese', 'view', 'viewed', 'viewer', 'viewers', 'viewing', 'viewings', 'viewpoint', 'views', 'viggo', 'vigilance', 'vignettes', 'vijay', 'viking', 'vikings', 'vile', 'village', 'villain', 'villainess', 'villainous', 'villains', 'vince', 'vincent', 'vincenzo', 'vintage', 'violated', 'violence', 'violent', 'violently', 'virgin', 'virginia', 'virile', 'virtual', 'virtually', 'virtue', 'virus', 'visceral', 'visconti', 'visible', 'vision', 'visions', 'visit', 'visited', 'visiting', 'visits', 'visual', 'visually', 'visuals', 'vital', 'vittorio', 'vivacious', 'vivah', 'vivian', 'vivid', 'vlad', 'vocabulary', 'vocal', 'vocals', 'vodka', 'voice', 'voiced', 'voices', 'void', 'voight', 'vollins', 'volume', 'volunteer', 'vomit', 'von', 'voodoo', 'vote', 'voted', 'voters', 'vow', 'voyage', 'vs', 'vu', 'vulgar', 'vulnerability', 'vulnerable', 'wacky', 'waggoner', 'wagner', 'wai', 'waist', 'wait', 'waited', 'waiting', 'waitress', 'waits', 'wake', 'wakes', 'waking', 'wal', 'walk', 'walked', 'walken', 'walker', 'walking', 'walks', 'wall', 'wallace', 'wallet', 'walls', 'walsh', 'walt', 'walter', 'wan', 'wandering', 'wanders', 'wang', 'wanna', 'wannabe', 'want', 'wanted', 'wanting', 'wants', 'war', 'ward', 'warden', 'wardrobe', 'warfield', 'wargames', 'warm', 'warmed', 'warming', 'warmth', 'warn', 'warned', 'warner', 'warning', 'warns', 'warp', 'warped', 'warrant', 'warren', 'warrior', 'warriors', 'wars', 'wartime', 'was', 'wash', 'washed', 'washing', 'washington', 'wasn', 'waste', 'wasted', 'wastes', 'wasting', 'watch', 'watchable', 'watched', 'watches', 'watching', 'water', 'waterfall', 'waterfront', 'waters', 'watson', 'wave', 'waves', 'wax', 'way', 'wayne', 'ways', 'wayward', 'we', 'weak', 'weakest', 'weakness', 'weaknesses', 'wealth', 'wealthy', 'weapon', 'weapons', 'wear', 'wearing', 'wears', 'weary', 'weather', 'web', 'website', 'wedding', 'wee', 'weed', 'week', 'weekend', 'weeks', 'weight', 'weird', 'weirdo', 'weismuller', 'weissmuller', 'welcome', 'welcomed', 'well', 'weller', 'welles', 'wells', 'wenders', 'wendigo', 'wendy', 'went', 'were', 'weren', 'werewolf', 'werewolves', 'werner', 'wes', 'wesley', 'west', 'western', 'westerns', 'wet', 'whacked', 'whale', 'what', 'whatever', 'whats', 'whatsoever', 'wheel', 'wheelchair', 'wheezer', 'when', 'whenever', 'where', 'whereas', 'whereby', 'wherever', 'whether', 'whew', 'which', 'while', 'whilst', 'whim', 'whims', 'whimsical', 'whining', 'whiny', 'whip', 'whipped', 'whipping', 'whispered', 'white', 'who', 'whoever', 'whole', 'wholly', 'whom', 'whomever', 'whoopi', 'whore', 'whose', 'why', 'wicked', 'wide', 'widely', 'wider', 'widmark', 'widow', 'widowed', 'wielding', 'wife', 'wig', 'wilcox', 'wild', 'wilder', 'wilderness', 'wildly', 'will', 'william', 'williams', 'willie', 'willing', 'willingly', 'willis', 'wilson', 'wimpy', 'win', 'winchester', 'wind', 'window', 'windows', 'winds', 'wine', 'wing', 'wings', 'winkler', 'winner', 'winning', 'wins', 'winslet', 'winter', 'winters', 'wiped', 'wire', 'wisdom', 'wise', 'wiser', 'wish', 'wished', 'wishes', 'wishing', 'wit', 'witch', 'witchcraft', 'witches', 'witching', 'with', 'within', 'without', 'witless', 'witness', 'witnessed', 'witted', 'witty', 'wives', 'wizard', 'wolf', 'wolfe', 'woman', 'womanizing', 'women', 'won', 'wonder', 'wondered', 'wonderful', 'wonderfully', 'wondering', 'wonderland', 'wonders', 'wong', 'wont', 'woo', 'wood', 'wooden', 'woods', 'woody', 'word', 'words', 'wore', 'work', 'worked', 'worker', 'workers', 'working', 'workings', 'workout', 'works', 'world', 'worldly', 'worlds', 'worm', 'worms', 'worn', 'worried', 'worry', 'worse', 'worship', 'worst', 'worth', 'worthless', 'worthwhile', 'worthy', 'would', 'wouldn', 'wound', 'wounded', 'wow', 'wrap', 'wrapped', 'wrath', 'wreck', 'wrenching', 'wrestler', 'wrestlers', 'wrestling', 'wretched', 'wright', 'write', 'writer', 'writers', 'writes', 'writing', 'written', 'wrong', 'wrongly', 'wrote', 'wu', 'ww', 'ww2', 'wwe', 'wwi', 'wwii', 'www', 'xica', 'xp', 'ya', 'yacht', 'yadda', 'yakuza', 'yankee', 'yankovic', 'yard', 'yarn', 'yawn', 'yeah', 'year', 'years', 'yell', 'yelling', 'yellow', 'yep', 'yes', 'yesterday', 'yet', 'yeti', 'yikes', 'yokai', 'york', 'yorkers', 'yoshida', 'you', 'young', 'younger', 'youngest', 'your', 'yours', 'yourself', 'youth', 'youthful', 'youtube', 'yuck', 'yuk', 'yul', 'yum', 'zane', 'zany', 'zero', 'zeta', 'zizek', 'zodiac', 'zoe', 'zombie', 'zombies', 'zomcon', 'zone', 'zoo']


Vocabulary
{'we': 9718, 'could': 2102, 'still': 8534, 'use': 9459, 'black': 1073, 'even': 3150, 'today': 9070, 'imagine': 4523, 'the': 8946, 'role': 7616, 'of': 6302, 'assistant': 687, 'to': 9068, 'prime': 6947, 'minister': 5816, 'played': 6750, 'by': 1366, 'wonderful': 9878, 'hugh': 4411, 'laurie': 5156, 'is': 4827, 'sensational': 7914, 'as': 655, 'prince': 6949, 'george': 3796, 'and': 481, 'his': 4301, 'brilliant': 1256, 'love': 5383, 'episode': 3095, 'which': 9783, 'kenneth': 5007, 'connor': 1976, 'guest': 4039, 'stars': 8475, 'british': 1263, 'thespian': 8971, 'every': 3158, 'time': 9046, 'says': 7782, 'macbeth': 5448, 'two': 9301, 'thespians': 8972, 'do': 2714, 'silly': 8131, 'little': 5305, 'act': 224, 'ward': 9669, 'off': 6303, 'evil': 3168, 'it': 4839, 'funniest': 3711, 'things': 8980, 'that': 8944, 'you': 9974, 'will': 9821, 'see': 7881, 'course': 2119, 'none': 6185, 'this': 8988, 'brilliance': 1255, 'comedic': 1852, 'genius': 3786, 'be': 904, 'without': 9862, 'ben': 991, 'elton': 2995, 'richard': 7525, 'curtis': 2253, 'who': 9796, 'are': 608, 'also': 418, 'behind': 963, 'films': 3459, 'like': 5264, 'actually': 240, 'thin': 8978, 'blue': 1119, 'line': 5281, 'four': 3630, 'funny': 3712, 'almost': 409, 'too': 9095, 'good': 3919, 'for': 3586, 'television': 8897, 'humor': 4426, 'can': 1408, 'smart': 8244, 'sexy': 7981, 'all': 394, 'at': 713, 'one': 6352, 'was': 9691, 'hoping': 4366, 'last': 5133, 'night': 6155, 'on': 6349, 'saturday': 7770, 'live': 5308, 'would': 9916, 'pay': 6593, 'homage': 4337, 'background': 812, 'in': 4568, 'if': 4492, 'gang': 3742, 'snl': 8267, 'did': 2569, 'some': 8302, 'research': 7439, 'they': 8973, 'know': 5063, 'what': 9768, 'treasure': 9197, 'have': 4165, 'grace': 3951, 'their': 8953, 'stage': 8443, 'burt': 1342, 'kennedy': 5005, 'used': 9460, 'very': 9526, 'director': 2617, 'but': 1354, 'never': 6130, 'mess': 5754, 'not': 6206, 'only': 6356, 'does': 2725, 'film': 3453, 'look': 5354, 'cheap': 1615, 'most': 5950, 'battle': 895, 'scenes': 7797, 'lifted': 5252, 'from': 3687, 'far': 3347, 'superior': 8716, 'command': 1865, '1955': 50, 'footage': 3583, 'shot': 8082, 'years': 9960, 'previously': 6937, 'looks': 5357, 'more': 5931, 'contemporary': 2009, 'than': 8940, 'anything': 555, 'picture': 6699, 'few': 3420, 'action': 227, 'were': 9755, 'movie': 5977, 'confused': 1962, 'incompetent': 4593, 'looking': 5356, 'just': 4970, 'shoddy': 8062, 'rest': 7467, 'has': 4153, 'feel': 3394, 'bad': 818, 'student': 8617, 'budget': 1300, 'didn': 2570, 'seem': 7888, 'whole': 9798, 'lot': 5374, 'moves': 5976, 'acting': 226, 'part': 6539, 'either': 2967, 'over': 6443, 'top': 9101, 'ham': 4092, 'or': 6384, 'under': 9337, 'comatose': 1840, 'although': 426, 'julia': 4955, 'comes': 1855, 'better': 1023, 'cast': 1501, 'chock': 1661, 'full': 3703, 'annoying': 524, 'historical': 4304, 'inaccuracies': 4570, 'way': 9714, 'long': 5348, 're': 7223, 'going': 3902, 'make': 5492, 'boring': 1173, 'an': 469, 'hour': 4389, 'so': 8271, 'get': 3809, 'with': 9860, 'don': 2745, 'stretch': 8584, 'out': 6424, 'three': 9006, 'hours': 4390, 'want': 9664, 'about': 172, 'check': 1619, 'john': 4918, 'wayne': 9715, '1960': 54, 'version': 9522, 'stole': 8542, 'its': 4845, 'hard': 4132, 'believe': 974, 'took': 9096, 'six': 8176, 'producers': 6976, 'lousy': 5381, 'skip': 8193, 'whereas': 9778, 'boiled': 1141, 'detective': 2531, 'stories': 8557, 'raymond': 7221, 'chandler': 1575, 'cinema': 1702, 'fox': 3633, 'chicken': 1641, 'indeed': 4609, 'creating': 2156, 'modern': 5874, 'american': 445, 'genre': 3788, 'style': 8638, 'process': 6971, 'those': 8994, 'might': 5785, 'called': 1385, 'golden': 3909, 'age': 327, 'fiction': 3426, 'made': 5459, 'barely': 858, 'any': 550, 'impression': 4560, 'whatsoever': 9771, 'problem': 6964, 'books': 1161, 'agatha': 326, 'christie': 1685, 'dorothy': 2762, 'van': 9488, 'whose': 9804, 'work': 9893, 'based': 873, 'low': 5391, 'variety': 9496, 'sam': 7737, 'spade': 8351, 'philip': 6669, 'mean': 5660, 'streets': 8579, 'la': 5087, 'working': 9897, 'class': 1730, 'bars': 868, 'offices': 6320, 'wealthy': 9724, 'meet': 5690, 'sorts': 8330, 'exciting': 3199, 'dangers': 2302, 'violence': 9577, 'generally': 3777, 'fixed': 3504, 'location': 5327, 'scene': 7795, 'murder': 6003, 'usually': 9468, 'lavish': 5157, 'country': 2110, 'house': 4391, 'limited': 5274, 'investigating': 4793, 'clues': 1788, 'interviewing': 4766, 'suspects': 8762, 'static': 8489, 'procedure': 6966, 'plot': 6766, 'reduced': 7296, 'puzzle': 7110, 'br': 1208, 'much': 5987, 'ideological': 4484, 'else': 2993, 'dealing': 2353, 'society': 8278, 'hostile': 4385, 'change': 1577, 'movement': 5974, 'novels': 6225, 'recording': 7280, 'urban': 9453, 'reality': 7245, 'increasingly': 4605, 'moving': 5980, 'away': 790, 'centre': 1552, 'both': 1181, 'authority': 768, 'city': 1715, 'itself': 4846, 'up': 9438, 'into': 4769, 'ever': 3156, 'camps': 1406, 'another': 529, 'major': 5490, 'character': 1588, 'because': 928, 'cannot': 1422, 'answer': 530, 'crime': 2179, 'until': 9428, 'end': 3033, 'gain': 3733, 'access': 199, 'characters': 1594, 'motivations': 5960, 'emotions': 3016, 'being': 966, 'defined': 2404, 'solely': 8290, 'potential': 6853, 'need': 6098, 'unlike': 9393, 'anxious': 549, 'prejudice': 6897, 'ridden': 7532, 'private': 6959, 'eyes': 3289, 'simply': 8146, 'there': 8966, 'maybe': 5635, 'eccentric': 2923, 'try': 9271, 'period': 6639, 'jane': 4864, 'austen': 761, 'school': 7806, 'been': 938, 'successes': 8665, 'example': 3182, 'radical': 7153, 'queen': 7122, 'others': 6418, 'claude': 1737, 'english': 3053, 'speaking': 8363, 'world': 9901, 'really': 7251, 'classic': 1732, 'green': 3995, 'danger': 2299, 'works': 9900, 'pushes': 7105, 'form': 3608, 'parody': 6537, 'while': 9784, 'integrity': 4723, 'interest': 4747, 'mystery': 6038, 'before': 942, 'came': 1395, 'michael': 5774, 'curtiz': 2254, 'case': 1495, 'narrative': 6059, 'pure': 7089, 'repulsive': 7428, 'introduced': 4777, 'gives': 3851, 'number': 6236, 'reason': 7254, 'kill': 5027, 'him': 4288, 'he': 4177, 'murdered': 6004, 'seemingly': 7891, 'manner': 5523, 'suicide': 8690, 'locked': 5331, 'room': 7638, 'policemen': 6792, 'fall': 3324, 'hopelessly': 4364, 'bait': 825, 'philo': 6672, 'vance': 9489, 'gentleman': 3791, 'amateur': 433, 'neither': 6114, 'old': 6331, 'nor': 6192, 'fat': 3365, 'read': 7232, 'open': 6358, 'confines': 1953, 'eventually': 3155, 'solve': 8300, 'corpse': 2087, 'intellectual': 4725, 'interesting': 4749, 'unsatisfying': 9415, 'solutions': 8298, 'rarely': 7205, 'less': 5217, 'entertaining': 3080, 'comical': 1862, 'bits': 1069, 'business': 1348, 'isn': 4831, 'attempt': 729, 'image': 4515, 'perfect': 6626, 'where': 9777, 'brutal': 1287, 'sergeant': 7942, 'rough': 7655, 'suspect': 8760, 'no': 6168, 'protest': 7033, 'marks': 5563, 'considered': 1988, 'great': 3986, 'consistent': 1993, 'themes': 8959, 'evidence': 3165, 'artistic': 649, 'development': 2541, 'hollywood': 4332, 'greatest': 3988, 'here': 4247, 'story': 8559, 'mere': 5740, 'takes': 8822, 'idea': 4475, 'logical': 5337, 'extreme': 3283, 'abstract': 183, 'variation': 9494, 'source': 8340, 'series': 7944, 'lines': 5284, 'beautiful': 923, 'art': 642, 'deco': 2383, 'sets': 7961, 'glorious': 3875, 'camera': 1398, 'movements': 5975, 'suddenly': 8675, 'break': 1229, 'composition': 1920, 'glide': 3867, 'angle': 498, 'dead': 2346, 'life': 5247, 'treatment': 9202, 'appropriate': 594, 'refuses': 7316, 'realism': 7242, 'pattern': 6583, 'turns': 9290, 'hall': 4085, 'mirrors': 5829, 'central': 1551, 'brothers': 1280, 'original': 6403, 'borrowed': 1176, 'unsolved': 9419, 'mysteries': 6035, 'book': 1160, 'fantasy': 3345, 'nasty': 6066, 'rich': 7524, 'men': 5722, 'collect': 1819, 'shades': 7987, 'chinese': 1659, 'servants': 7949, 'ex': 3176, 'cons': 1979, 'turned': 9287, 'dog': 2727, 'loving': 5389, 'cops': 2073, 'man': 5507, 'drop': 2833, 'cruise': 2216, 'europe': 3143, 'knows': 5068, 'social': 8275, 'these': 8970, 'people': 6619, 'yet': 9967, 'association': 692, 'police': 6791, 'wasn': 9696, 'thinking': 8982, 'machine': 5450, 'william': 9822, 'powell': 6860, 'comedian': 1850, 'decade': 2368, 'humanity': 4420, 'climax': 1760, 'involving': 4805, 'vicious': 9537, 'dogs': 2729, 'attempted': 730, 'supposed': 8730, 'preventing': 6932, 'guilty': 4044, 'saw': 7779, 'couple': 2115, 'weeks': 9739, 'ago': 336, 'stuck': 8615, 'my': 6028, 'head': 4178, 'since': 8151, 'unfortunately': 9370, 'mediocre': 5684, 'documentary': 2721, 'true': 9258, 'beales': 907, 'had': 4067, 'through': 9016, 'dvd': 2884, 'bonus': 1156, 'material': 5614, 'search': 7855, 'web': 9732, 'fans': 3342, 'mention': 5730, 'edith': 2938, 'edie': 2934, 'themselves': 8960, 'suggestion': 8687, 'exploitative': 3252, 'exploitation': 3251, 'sense': 7915, 'word': 9890, 'effort': 2952, 'explain': 3239, 'how': 4397, 'condition': 1946, 'approach': 591, 'seems': 7892, 'turn': 9286, 'wait': 9636, 'say': 7780, 'something': 8307, 'outrageous': 6435, 'sound': 8333, 'release': 7347, 'poor': 6806, 'difficult': 2583, 'follow': 3566, 'appreciate': 587, 'somewhat': 8311, 'early': 2902, 'history': 4306, 'ironic': 4814, 'compare': 1894, 'sexual': 7978, 'abuse': 187, 'mentally': 5729, 'retarded': 7480, 'patients': 6578, 'state': 8484, 'island': 4830, '1972': 66, 'grey': 4003, 'gardens': 3752, 'review': 7501, 'new': 6132, 'many': 5532, 'needed': 6099, 'lives': 5311, 'them': 8956, 'thing': 8979, 'kept': 5010, 'watching': 9705, 'hell': 4226, 'family': 3334, 'living': 5313, 'dangerous': 2300, 'conditions': 1947, 'jackie': 4852, 'married': 5570, 'earth': 2908, 'couldn': 2103, 'afford': 315, 'decent': 2371, 'home': 4338, 'least': 5181, 'hire': 4297, 'come': 1848, 'keep': 4996, 'eye': 3286, 'shameful': 8006, 'disgrace': 2654, 'entire': 3085, 'may': 5633, 'negative': 6104, 'strongly': 8604, 'recommend': 7275, 'anyone': 554, 'enjoys': 3062, 'documentaries': 2720, 'perhaps': 6637, 'someday': 8304, 'someone': 8306, 'along': 412, 'bringing': 1259, '1970': 63, 've': 9505, 'seen': 7893, 'prior': 6955, 'seeing': 7884, 'earlier': 2901, 'disappointing': 2630, 'london': 5344, 'exactly': 3178, 'inspire': 4693, 'hope': 4359, 'me': 5657, 'first': 3489, 'however': 4400, 'feeling': 3395, 'different': 2580, 'college': 1823, 'girl': 3844, 'murders': 6009, 'bizarre': 1072, 'rather': 7210, 'wacky': 9631, 'flick': 3533, 'fun': 3706, 'watch': 9701, 'hate': 4157, 'throws': 9022, 'weird': 9741, 'ideas': 4479, 'script': 7843, 'manages': 5512, 'pull': 7070, 'begins': 953, 'lab': 5088, 'crazy': 2150, 'scientist': 7813, 'invented': 4786, 'highly': 4278, 'toxic': 9138, 'poison': 6785, 'kills': 5033, 'victim': 9539, 'makes': 5495, 'died': 2573, 'heart': 4196, 'attack': 725, 'mysterious': 6036, 'criminal': 2181, 'mastermind': 5603, 'breaks': 1233, 'common': 1884, 'criminals': 2182, 'jail': 4857, 'carry': 1484, 'using': 9465, 'then': 8961, 'put': 7107, 'back': 808, 'title': 9064, 'suggests': 8689, 'nearby': 6089, 'girls': 3847, 'provides': 7043, 'victims': 9540, 'monk': 5894, 'dressed': 2817, 'red': 7288, 'around': 628, 'breaking': 1232, 'serious': 7945, 'affair': 303, 'clearly': 1746, 'tongue': 9091, 'cheek': 1621, 'vibe': 9532, 'well': 9747, 'fact': 3299, 'sides': 8113, 'everything': 3162, 'run': 7688, 'big': 1037, 'nicely': 6143, 'throughout': 9017, 'always': 430, 'enough': 3066, 'audience': 749, 'interested': 4748, 'atmosphere': 719, 'superb': 8712, 'colour': 1833, 'scheme': 7800, 'display': 2671, 'edgar': 2929, 'wallace': 9652, 'novel': 6223, 'imagination': 4520, 'locations': 5328, 'killer': 5029, 'lair': 5104, 'host': 4382, 'wild': 9817, 'exotic': 3219, 'animals': 507, 'serve': 7950, 'relevance': 7353, 'help': 4233, 'give': 3849, 'extra': 3279, 'cant': 1424, 'expect': 3221, 'conclusion': 1944, 'fully': 3705, 'after': 320, 'stuff': 8625, 'goes': 3900, 'sort': 8329, 'satisfying': 7769, 'overall': 6446, 'excellent': 3185, 'recommended': 7277, 'pokémon': 6789, 'fan': 3336, 'enjoyed': 3059, 'introduces': 4778, 'legendary': 5195, 'each': 2895, 'adds': 260, 'depth': 2481, 'relationships': 7343, 'between': 1026, 'enjoy': 3057, 'includes': 4586, 'adults': 285, 'corny': 2083, 'when': 9775, 'dubbing': 2852, 'animation': 509, 'parts': 6551, 'villain': 9568, 'kind': 5036, 'think': 8981, 'movies': 5979, 'done': 2747, 'job': 4912, 'types': 9306, 'villains': 9571, 'guarantee': 4030, 'aren': 611, 'own': 6466, 'imdb': 4527, 'should': 8085, 'allow': 401, 'vote': 9621, '10': 3, 'awful': 793, 'written': 9936, 'preacher': 6876, 'left': 5190, 'asked': 664, 'buck': 1295, 'computer': 1924, 'graphic': 3972, 'meant': 5667, 'said': 7722, 'daniel': 2304, 'chapter': 1587, '24': 115, 'probably': 6963, 'verse': 9521, 'makers': 5494, 'missed': 5842, 'slip': 8227, 'worst': 9911, 'position': 6836, 'christians': 1684, 'interpretation': 4761, 'events': 3153, 'such': 8669, 'opinion': 6369, 'understand': 9344, 'flaws': 3522, 'go': 3886, 'jim': 4907, 'blessed': 1097, 'biblical': 1034, 'study': 8623, 'second': 7866, 'rapture': 7203, 'having': 4167, 'watched': 9703, 'fantastic': 3344, 'nerves': 6122, 'jacques': 4855, 'audiard': 748, 'must': 6021, 'making': 5497, 'quite': 7138, 'name': 6049, 'himself': 4289, 'france': 3644, 'rightly': 7544, 'vince': 9572, 'tom': 9081, 'emmanuelle': 3011, 'penelope': 6614, 'actors': 234, 'taut': 8861, 'compelling': 1902, 'thriller': 9010, 'starts': 8482, 'slowly': 8236, 'clever': 1750, 'building': 1309, 'tension': 8911, 'everyone': 3161, 'plays': 6755, 'perfection': 6627, 'right': 7541, 'down': 2772, 'cameraman': 1399, 'real': 7239, 'stupid': 8633, 'gun': 4047, 'play': 6749, 'fighting': 3442, 'happens': 4125, 'credible': 2166, 'expressions': 3272, 'yourself': 9980, 'bottle': 1186, 'wine': 9836, 'lights': 5261, 'take': 8819, 'phone': 6675, 'hook': 4352, 'single': 8158, 'woman': 9872, '40': 130, 'found': 3628, 'extremely': 3284, 'insulting': 4717, 'demeaning': 2433, 'women': 9874, 'other': 6417, 'sad': 7712, 'pathetic': 6572, 'write': 9931, 'direct': 2611, 'chick': 1640, 'failed': 3309, 'miserably': 5834, 'andy': 489, 'mcdowell': 5648, 'actress': 235, 'begin': 950, 'given': 3850, 'non': 6184, 'existent': 3214, 'refer': 7302, 'she': 8026, 'chance': 1573, 'sympathy': 8802, 'empathy': 3018, 'realistic': 7243, 'believable': 973, 'obligatory': 6257, 'male': 5501, 'attractive': 744, 'straight': 8563, 'deciding': 2377, 'please': 6759, 'wish': 9851, 'money': 5891, 'rental': 7398, 'minutes': 5821, 'ripoff': 7555, 'typical': 9307, 'steele': 8507, 'production': 6980, 'tragedy': 9153, 'manage': 5508, 'together': 9073, 'despite': 2518, 'odds': 6297, 'wouldn': 9917, 'call': 1384, 'spoiler': 8407, 'reading': 7235, 'gilbert': 3832, 'ophelia': 6368, 'french': 3668, 'lost': 5373, 'her': 4245, 'husband': 4450, 'son': 8313, 'accident': 200, 'needs': 6102, 'stop': 8550, 'doing': 2730, 'required': 7432, 'accent': 191, 'otherwise': 6419, 'brad': 1209, 'johnson': 4920, 'actor': 233, 'matt': 5618, 'recovering': 7283, 'divorce': 2709, 'gentle': 3790, 'convincing': 2060, 'beach': 905, 'daughter': 2330, 'initially': 4664, 'child': 1644, 'talked': 8832, 'kid': 5020, 'become': 931, 'friends': 3679, 'falls': 3328, 'chemistry': 1630, 'leads': 5172, 'though': 8995, 'talent': 8825, 'question': 7126, 'best': 1012, 'predictable': 6888, 'stereotypical': 8521, 'bigger': 1039, 'secret': 7870, 'revealed': 7494, 'nutshell': 6245, 'wanted': 9665, 'mindless': 5807, 'entertainment': 3081, 'got': 3937, 'regard': 7317, 'romantic': 7625, 'fails': 3311, 'memorable': 5716, 'janine': 4868, 'turner': 9288, 'bought': 1189, 'recommendation': 7276, 'wife': 9814, 'loved': 5384, 'aired': 355, 'disaster': 2633, 'lighting': 5258, 'instance': 4699, 'bed': 934, 'immediately': 4534, 'cut': 2260, 'coming': 1864, 'mid': 5780, 'sentence': 7925, 'next': 6141, 'mason': 5593, 'leaving': 5185, 'wonder': 9876, 'during': 2877, 'produced': 6974, 'disc': 2637, 'careful': 1454, 'buy': 1362, 'sending': 7910, 'simple': 8141, 'minded': 5806, 'natured': 6080, 'drive': 2826, 'high': 4272, 'graduate': 3958, 'dreams': 2812, 'owning': 6470, 'custom': 2258, 'ballroom': 833, 'bobby': 1132, 'our': 6422, 'hero': 4251, 'spends': 8384, 'vehicle': 9508, 'joint': 4925, 'sharing': 8019, 'quickly': 7130, 'picked': 6692, 'local': 5322, 'pizza': 6728, 'finds': 3470, 'responsibility': 7465, 'owner': 6468, 'mechanical': 5675, 'marvel': 5583, 'pleasure': 6762, 'mine': 5809, 'captures': 1443, 'laid': 5103, '70': 144, 'mood': 5912, 'unintentional': 9378, 'category': 1516, 'nice': 6142, 'important': 4551, 'intriguing': 4774, 'dramatic': 2799, 'romance': 7624, 'present': 6908, 'told': 9077, 'build': 1308, 'portrayed': 6828, 'normally': 6196, 'asian': 661, 'west': 9762, 'advanced': 287, 'already': 416, 'western': 9763, 'same': 7739, 'era': 3104, 'wished': 9852, 'visual': 9596, 'bit': 1064, 'certainly': 1558, 'lacking': 5095, 'sequences': 7940, 'obviously': 6277, 'prevent': 6930, 'truly': 9261, 'distinct': 2680, 'raising': 7170, 'above': 173, 'oh': 6325, 'constructed': 2001, 'disappoint': 2628, 'imitate': 4528, 'attempting': 731, 'realise': 7240, 'flying': 3555, 'air': 353, 'directed': 2612, 'intention': 4737, 'cult': 2235, 'hit': 4308, 'sat': 7763, 'absolutely': 180, 'becomes': 932, 'fascinating': 3357, 'terms': 8917, 'faults': 3373, 'nominated': 6181, 'performance': 6630, 'awards': 788, 'find': 3468, 'contains': 2007, 'value': 9484, 'opening': 6361, 'defies': 2401, 'logic': 5336, 'dialogue': 2559, 'completely': 1913, 'unbelievable': 9326, 'illogical': 4507, 'ditto': 2698, 'behaviour': 962, 'general': 3776, 'storyline': 8561, 'mind': 5805, 'boggling': 1139, 'decisions': 2379, 'spend': 8382, 'piece': 6702, 'trash': 9185, 'wow': 9920, 'witty': 9867, 'depiction': 2473, 'writer': 9932, 'andrew': 486, 'marshall': 5576, 'foreboding': 3595, 'occasionally': 6281, 'frightening': 3683, 'yes': 9965, 'fooled': 3578, 'children': 1648, 'tune': 9277, 'show': 8090, 'dark': 2314, 'side': 8109, 'times': 9050, 'chilling': 1653, 'simplistic': 8145, 'sitcom': 8170, '2d': 119, 'comic': 1861, 'device': 2546, 'instead': 4703, 'rounded': 7658, 'individuals': 4623, 'roller': 7620, 'coaster': 1798, 'human': 4418, 'moments': 5884, 'bill': 1046, 'supposedly': 8731, 'haunted': 4163, 'curse': 2250, 'waking': 9643, 'village': 9567, 'examples': 3183, 'taking': 8823, 'surreal': 8747, 'add': 248, 'incredibly': 4607, 'guaranteed': 4031, 'smile': 8249, 'shame': 8005, 'video': 9546, 'stopped': 8551, 'releasing': 7350, 'gold': 3906, 'com': 1839, 'your': 9978, 'hold': 4322, 'episodes': 3096, 'shops': 8074, 'nothing': 6213, 'dying': 2889, 'hill': 4285, 'stellar': 8511, 'producer': 6975, 'editor': 2941, 'god': 3891, 'eaten': 2919, 'humble': 4423, 'pie': 6701, 'sake': 7727, 'kargil': 4983, 'hired': 4298, 'bollywood': 1145, 'directors': 2619, 'scriptwriter': 7847, 'musician': 6017, 'related': 7338, 'seemed': 7889, 'listened': 5297, 'apocalypse': 566, 'now': 6228, 'indian': 4613, 'drug': 2840, 'professional': 6986, 'crew': 2175, 'thrown': 9021, 'fireworks': 3485, 'army': 626, 'terrible': 8918, 'again': 324, 'sir': 8164, 'ps': 7050, 'decides': 2376, 'glorify': 3874, 'regiment': 7323, 'suggest': 8684, 'represent': 7420, 'team': 8871, 'surely': 8736, 'plenty': 6763, 'count': 2104, '000': 1, 'half': 4082, 'million': 5798, 'kids': 5026, 'news': 6137, 'bears': 914, '70s': 145, 'worked': 9894, 'guys': 4058, 'arranged': 630, 'financing': 3467, 'warriors': 9688, 'king': 5039, 'rocky': 7607, 'horror': 4377, 'among': 453, 'small': 8240, 'gone': 3916, 'careers': 1453, 'jumped': 4962, 'credits': 2170, 'young': 9975, 'appearance': 579, 'create': 2153, 'weren': 9756, 'lo': 5317, 'behold': 964, 'wes': 9760, 'craven': 2147, 'created': 2154, 'krueger': 5080, 'scream': 7828, 'owed': 6463, 'favor': 3374, 'helped': 4234, 'surprising': 8745, 'fred': 3661, 'lincoln': 5277, 'appeared': 581, 'adult': 281, 'associated': 690, 'spoof': 8413, 'funnier': 3710, 'attempts': 732, 'combined': 1844, 'let': 5222, 'placed': 6730, 'indication': 4619, 'asleep': 667, 'wheel': 9772, 'complete': 1911, 'nine': 6160, 'younger': 9976, 'brother': 1279, 'recently': 7268, 'connect': 1967, 'goings': 3903, 'stands': 8461, 'classical': 1733, 'touch': 9121, 'engaged': 3049, 'thankfully': 8942, 'locales': 5324, 'etc': 3135, 'visited': 9593, 'hence': 4240, 'adding': 252, 'connection': 1970, 'dialogues': 2560, 'music': 6014, 'soft': 8282, 'focus': 3557, 'somehow': 8305, 'remind': 7383, 'chopra': 1673, 'extent': 3276, 'justice': 4971, 'lead': 5168, 'pair': 6497, 'department': 2463, 'supporting': 8728, 'rate': 7207, 'playing': 6754, 'front': 3688, 'league': 5173, 'situations': 8175, 'interactions': 4745, 'place': 6729, 'songs': 8315, 'respect': 7456, 'body': 1134, 'badly': 821, 'double': 2766, 'intrigue': 4772, 'nonsense': 6187, 'comfortably': 1858, 'parents': 6530, 'except': 3187, 'soon': 8320, 'express': 3268, 'proposes': 7023, 'families': 3333, 'totally': 9119, 'incidental': 4580, 'peripheral': 6641, 'protagonists': 7030, 'drama': 2797, 'situation': 8174, 'artificially': 647, 'outcome': 6426, 'sacrifice': 7709, 'ensuing': 3070, 'why': 9805, 'lacks': 5097, 'emotional': 3014, 'punch': 7078, 'purpose': 7094, 'twist': 9298, 'tale': 8824, 'necessary': 6094, 'transcend': 9166, 'pre': 6875, 'marital': 5557, 'feature': 3385, 'waiting': 9638, 'preaching': 6877, 'later': 5139, 'alok': 410, 'nath': 6069, 'tax': 8862, 'free': 3663, 'status': 8495, 'linear': 5282, 'ended': 3036, 'unremittingly': 9412, 'bleak': 1090, 'depressing': 2479, 'desired': 2510, 'misery': 5835, 'emptiness': 3025, 'controversial': 2039, 'painfully': 6491, 'slow': 8234, 'painful': 6490, 'challenging': 1568, 'enjoyable': 3058, 'mildly': 5790, 'thought': 8996, 'provoking': 7049, 'curiosity': 2245, 'fury': 3719, 'emerges': 3007, 'dull': 2864, 'uninteresting': 9380, 'saved': 7775, 'presence': 6907, 'villainess': 9569, 'players': 6752, 'including': 4587, 'hammy': 4098, 'admittedly': 273, 'often': 6324, 'atrocious': 721, 'screenplay': 7835, 'packs': 6482, 'werewolf': 9757, 'frankenstein': 3652, 'dr': 2785, 'flesh': 3530, 'dozen': 2783, 'developed': 2539, 'characterizations': 1593, 'feeble': 3392, 'ridiculous': 7537, 'turgid': 9282, 'proceedings': 6969, 'direction': 2614, 'jerky': 4891, 'amateurish': 434, 'clumsy': 1789, 'bright': 1252, 'promising': 7010, 'photographed': 6680, 'fright': 3681, 'advance': 286, 'similar': 8134, 'ineptitude': 4631, 'score': 7817, 'laughably': 5146, 'crude': 2212, 'primitive': 6948, 'special': 8366, 'effects': 2950, 'deserve': 2499, 'agree': 338, 'previous': 6936, 'comment': 1871, 'beginning': 952, 'wandering': 9659, 'remain': 7367, 'importance': 4550, 'save': 7774, 'short': 8076, 'leave': 5183, 'remaining': 7370, 'visits': 9595, 'anymore': 553, 'witches': 9858, 'days': 2339, 'dolls': 2734, 'drinking': 2824, 'vodka': 9609, 'apparently': 574, 'flashing': 3514, 'showing': 8096, 'judges': 4948, 'taste': 8856, 'generous': 3783, 'predecessor': 6884, 'comments': 1875, 'surprised': 8743, 'recognized': 7274, 'basically': 878, 'overlong': 6454, 'remake': 7372, 'twilight': 9295, 'zone': 9998, 'mirror': 5828, 'starring': 8474, 'vera': 9516, 'miles': 5792, 'rod': 7608, 'effective': 2948, 'spooky': 8416, 'sean': 7854, 'tedious': 8887, 'unexplained': 9363, 'ending': 3037, 'substance': 8653, 'sadly': 7715, 'missing': 5845, 'broken': 1269, 'justify': 4974, 'further': 3717, 'observations': 6264, 'car': 1445, 'event': 3152, 'gets': 3811, 'reference': 7303, 'insurance': 4720, 'company': 1893, 'person': 6645, 'driving': 2831, 'report': 7416, 'advice': 296, 'bore': 1170, 'okay': 6328, 'keith': 5000, 'miss': 5841, 'backbone': 809, 'england': 3052, 'killed': 5028, 'folks': 3565, 'peter': 6659, 'ol': 6330, 'colonel': 1827, 'cricket': 2176, 'war': 9668, 'lord': 5362, 'manor': 5527, 'joanna': 4911, 'lumley': 5424, 'lady': 5101, '20': 98, 'past': 6566, 'brit': 1261, 'toy': 9139, 'boy': 1203, 'alright': 417, 'col': 1811, 'knowledge': 5066, 'guy': 4057, 'round': 7657, 'christmas': 1688, 'gal': 3735, 'david': 2333, 'mccallum': 5639, 'equally': 3099, 'squeeze': 8436, 'cover': 2125, 'within': 9861, 'gave': 3763, 'circus': 1711, 'finally': 3464, 'susan': 8759, 'headmistress': 4183, 'boarding': 1126, 'serving': 7956, 'tea': 8866, 'office': 6317, 'dash': 2325, 'deep': 2392, 'poignant': 6779, 'outside': 6440, 'once': 6350, 'warn': 9678, 'us': 9457, 'ah': 341, 'running': 7690, 'em': 2997, 'loss': 5372, 'yours': 9979, 'setting': 7962, 'wrong': 9937, 'dimensional': 2599, 'roles': 7617, 'paid': 6488, 'oldest': 6333, 'jobs': 4913, 'warning': 9681, 'sign': 8120, 'lots': 5376, 'shooting': 8068, 'hey': 4264, 'leading': 5171, 'cries': 2178, 'crying': 2224, 'law': 5158, 'eyed': 3288, 'shall': 8002, 'known': 5067, 'third': 8985, 'll': 5315, 'emily': 3009, 'award': 786, 'spotlight': 8420, 'lastly': 5135, 'fourth': 3632, 'screen': 7832, 'female': 3405, 'mrs': 5983, 'tell': 8898, 'pursuing': 7100, 'whom': 9800, 'sum': 8698, 'ii': 4500, 'happening': 4123, 'ok': 6327, 'japanese': 4871, 'prison': 6956, 'baby': 804, 'catatonic': 1510, 'meanwhile': 5669, 'crush': 2220, 'wartime': 9690, 'tough': 9125, 'spot': 8419, 'street': 8578, 'recover': 7282, 'somebody': 8303, 'somewhere': 8312, 'immortal': 4541, 'classics': 1734, 'dancing': 2296, 'ginger': 3841, 'singing': 8157, 'bothers': 1185, 'randolph': 7181, 'scott': 7822, 'harriet': 4143, 'hilliard': 4286, 'sub': 8644, 'doesn': 2726, 'detract': 2537, 'winning': 9841, 'personality': 6649, 'randy': 7184, 'ten': 8903, 'favorites': 3376, 'list': 5294, 'cowboy': 2131, 'errol': 3110, 'flynn': 3556, 'alan': 367, 'victor': 9541, 'mature': 5625, 'likable': 5263, 'rise': 7559, 'certain': 1557, 'occasions': 6282, 'plots': 6767, 'depended': 2466, 'fill': 3448, 'space': 8347, 'musical': 6015, 'numbers': 6237, 'shortened': 8078, 'felt': 3404, 'stand': 8456, 'colin': 1816, 'america': 444, 'passion': 6562, 'putting': 7109, 'favorite': 3375, 'joy': 4939, 'close': 1771, 'vision': 9590, 'disliked': 2666, 'context': 2015, 'origin': 6402, 'uses': 9464, 'flashback': 3511, 'modesty': 5876, 'shaped': 8012, 'became': 927, 'network': 6127, 'willie': 9824, 'pace': 6474, 'day': 2338, 'acceptable': 194, 'faithful': 3320, 'blaise': 1080, 'chases': 1610, 'forget': 3600, 'franchise': 3646, 'promoted': 7011, 'anywhere': 559, 'gay': 3764, 'stereotyping': 8522, 'wasting': 9700, 'funding': 3708, 'noah': 6169, 'arc': 601, 'trying': 9272, 'woody': 9889, 'allen': 398, 'absurd': 184, 'five': 3502, 'adore': 278, 'elements': 2981, 'sharp': 8022, 'handsome': 4108, 'mixed': 5860, 'laughs': 5149, 'fate': 3368, 'jaded': 4856, 'goers': 3899, 'happy': 4129, 'gorgeous': 3932, 'homes': 4341, 'landscapes': 5120, 'minds': 5808, 'troubles': 9255, 'viewed': 9553, 'involved': 4802, 'stick': 8529, 'statement': 8486, 'moore': 5918, 'ron': 7633, 'swanson': 8773, 'intelligent': 4728, 'chuckle': 1693, 'gross': 4012, 'aforementioned': 316, 'size': 8180, 'indiana': 4614, 'dollar': 2732, 'lasts': 5136, 'excruciating': 3201, 'paper': 6516, 'care': 1450, 'struggling': 8610, 'writers': 9933, 'dream': 2810, 'wrote': 9939, 'versions': 9523, 'figure': 3444, 'tie': 9035, 'gilligan': 3835, 'unoriginal': 9401, 'center': 1548, 'stores': 8555, 'twenty': 9293, 'contrived': 2033, 'national': 6072, 'lampoon': 5111, 'deadly': 2347, 'sins': 8163, 'joe': 4915, 'tv': 9291, 'creates': 2155, 'screenwriter': 7837, 'comedy': 1854, 'hot': 4386, 'star': 8466, 'constantly': 1999, 'cameos': 1397, 'fault': 3372, 'stay': 8496, 'trust': 9265, 'switch': 8788, 'destroy': 2521, 'copy': 2074, 'key': 5013, 'whatever': 9769, 'lends': 5204, 'padded': 6484, '80': 148, 'therefore': 8967, 'sit': 8169, 'walk': 9645, 'apart': 560, 'shop': 8072, 'walking': 9649, 'wood': 9886, 'spent': 8385, 'developing': 2540, 'start': 8476, 'baddie': 819, 'horrific': 4374, 'rubbish': 7670, 'pants': 6515, 'ups': 9449, 'continuously': 2025, 'following': 3569, 'sure': 8735, 'thinks': 8983, 'results': 7476, 'brought': 1281, 'cabin': 1372, 'fever': 3419, 'beyond': 1030, 'finish': 3478, 'sanity': 7749, 'clear': 1745, 'heap': 4189, 'total': 9118, 'von': 9619, 'easily': 2913, 'dutch': 2880, 'slasher': 8204, 'offers': 6316, 'gore': 3931, 'veteran': 9527, 'wasted': 9698, 'professor': 6988, 'abysmal': 189, 'laughable': 5145, 'famous': 3335, 'surgeon': 8740, 'lies': 5244, 'seven': 7967, 'wakes': 9642, 'bloody': 1113, 'rampage': 7179, 'influenced': 4643, 'halloween': 4088, 'friday': 3675, '13th': 10, 'killings': 5032, 'hilarious': 4281, 'dialogs': 2558, 'laugh': 5144, 'hurts': 4449, '25': 116, 'worth': 9912, 'inspiration': 4691, 'packed': 6481, 'existential': 3215, 'blade': 1077, 'runner': 7689, 'future': 3720, 'corporate': 2085, 'billboards': 1047, 'advertising': 295, 'products': 6983, 'technology': 8884, 'matrix': 5617, 'spielberg': 8388, 'white': 9795, 'sin': 8149, 'creators': 2162, 'crafted': 2136, 'neo': 6118, 'noir': 6175, 'regardless': 7320, 'stunning': 8630, 'visuals': 9598, 'final': 3462, 'destination': 2519, 'possible': 6844, 'spoilers': 8408, 'staying': 8498, 'awake': 784, 'reminds': 7386, 'veronica': 9519, 'chicks': 1642, 'brings': 1260, 'casual': 1506, 'conversation': 2046, 'step': 8512, 'conversations': 2047, 'utterly': 9472, 'herself': 4259, 'rambling': 7175, 'gratuitous': 3979, 'self': 7899, 'centered': 1549, 'philosophy': 6674, 'bunch': 1324, 'sensible': 7920, 'deal': 2350, 'feminine': 3407, 'moodiness': 5913, 'brunette': 1285, 'masculine': 5588, 'blonde': 1107, 'alexander': 379, 'steals': 8503, 'appear': 578, 'group': 4019, 'dropping': 2835, 'face': 3294, 'hands': 4107, 'marlene': 5565, 'sings': 8159, 'couples': 2117, 'paris': 6531, 'tonight': 9092, 'alex': 378, 'super': 8711, 'relationship': 7342, 'marriage': 5569, 'breakup': 1234, 'selfish': 7900, 'stepping': 8515, 'stones': 8547, 'entertained': 3078, 'haired': 4077, 'herr': 4256, 'silent': 8129, 'aristocrats': 618, 'travel': 9190, 'distinguished': 2685, 'places': 6732, 'order': 6393, 'avoid': 779, 'heat': 4205, 'coarse': 1797, 'ease': 2910, 'travels': 9194, 'happen': 4121, 'ages': 333, 'charming': 1606, 'elegant': 2978, 'namely': 6051, 'buster': 1351, 'keaton': 4994, 'eddie': 2927, 'german': 3802, 'liked': 5266, 'segment': 7895, 'focused': 3558, 'stone': 8546, 'due': 2859, 'affinity': 310, 'feels': 3397, 'ancient': 480, 'glory': 3877, 'rome': 7628, 'included': 4585, 'cause': 1523, 'roman': 7623, 'empire': 3021, 'barbarians': 852, 'germans': 3803, '100': 4, 'qualify': 7115, 'companions': 1892, 'endure': 3042, 'strange': 8567, 'happenings': 4124, 'complicated': 1916, 'subject': 8645, 'prefer': 6890, 'shown': 8097, 'theatre': 8949, 'oeuvre': 6301, 'gags': 3730, 'astounding': 706, 'technical': 8877, 'tricks': 9224, 'absolute': 179, 'various': 9497, 'heiress': 4218, 'http': 4403, 'main': 5482, 'czech': 2271, 'saying': 7781, 'inspired': 4694, 'theater': 8947, 'filmmakers': 3457, 'republic': 7426, 'pulled': 7071, 'basis': 882, 'deliberately': 2415, 'phony': 6677, 'eastern': 2915, 'european': 3144, 'equivalent': 3102, 'wal': 9644, 'mart': 5577, 'store': 8554, 'built': 1312, 'ad': 241, 'campaign': 1403, 'radio': 7154, 'spots': 8421, 'official': 6321, 'catchy': 1514, 'theme': 8957, 'song': 8314, 'photos': 6685, 'fake': 3321, 'merchandise': 5737, 'waited': 9637, 'creation': 2157, 'façade': 3379, 'convince': 2057, 'existed': 3212, 'ask': 663, 'provide': 7041, 'essentially': 3126, 'stunt': 8631, 'manipulated': 5517, 'believing': 978, 'power': 6861, 'moral': 5923, 'claiming': 1721, 'higher': 4273, 'join': 4921, 'union': 9381, 'fair': 3314, 'especially': 3120, 'considers': 1990, 'actual': 238, 'against': 325, 'nature': 6079, 'lying': 5440, 'customers': 2259, 'deception': 2372, 'allowing': 403, 'caught': 1522, 'unsuspecting': 9423, 'primary': 6946, 'target': 8850, 'ways': 9716, 'satirical': 7766, 'arrow': 640, 'intended': 4731, 'ironically': 4815, 'launched': 5152, 'hearted': 4198, 'naturally': 6078, 'ultimately': 9316, 'ones': 6353, 'proceed': 6967, 'fools': 3581, 'perfectly': 6628, 'handicapped': 4103, 'forced': 3590, 'foot': 3582, 'prove': 7037, 'anyway': 557, 'greedy': 3993, 'supermarket': 8720, 'market': 5560, 'advertised': 293, 'vigilance': 9561, 'require': 7431, 'level': 5231, 'cynicism': 2270, 'virtually': 9584, 'impossible': 4555, 'function': 3707, 'afraid': 317, 'proves': 7040, 'utter': 9471, 'idiots': 4489, 'discover': 2640, 'trick': 9222, 'react': 7229, 'able': 167, 'muster': 6022, 'myself': 6034, 'gripping': 4007, 'akin': 363, 'massive': 5598, 'traffic': 9151, 'dust': 2878, 'settled': 7965, 'disappointed': 2629, 'return': 7486, 'faced': 3295, 'empty': 3026, 'handed': 4101, 'safely': 7718, 'ashamed': 657, 'view': 9552, 'nascar': 6064, 'maniac': 5515, 'am': 431, 'race': 7145, 'cars': 1487, '1983': 78, 'admit': 270, 'haven': 4166, '1995': 91, 'races': 7146, 'germany': 3804, 'reynolds': 7520, 'fast': 3363, 'bandit': 840, 'remember': 7379, 'oscar': 6413, 'academy': 190, 'year': 9959, 'type': 9304, 'soundtrack': 8338, 'won': 9875, 'pick': 6691, 'sums': 8704, 'eighties': 2965, 'sounds': 8336, 'fashion': 3359, 'innovative': 4673, 'blends': 1095, 'brilliantly': 1257, 'drawn': 2805, 'humour': 4428, 'whether': 9781, 'chooses': 1667, 'shows': 8098, 'tone': 9089, 'season': 7859, 'site': 8171, 'formula': 3613, 'viewers': 9555, 'dollars': 2733, 'glue': 3884, 'desperate': 2514, 'housewives': 4395, 'route': 7661, 'achieving': 218, 'executive': 3208, 'brave': 1224, 'service': 7953, 'goal': 3887, 'storytelling': 8562, 'normal': 6195, 'conventional': 2044, 'cutting': 2265, 'edge': 2930, 'creations': 2158, 'public': 7065, 'testament': 8930, 'garnered': 3754, 'base': 871, 'consists': 1995, 'audiences': 750, 'visually': 9597, 'pretty': 6928, 'pictures': 6700, 'forces': 3591, 'viewer': 9554, 'shots': 8084, 'easy': 2917, 'succeed': 8661, 'touches': 9123, 'genres': 3789, '99': 157, 'north': 6199, 'pin': 6714, 'philosophical': 6673, 'message': 5755, 'structure': 8606, 'waste': 9697, 'towards': 9133, 'force': 3589, 'claire': 1723, 'denis': 2450, 'fits': 3499, 'length': 5205, 'description': 2496, 'enjoyment': 3061, 'judgment': 4950, 'experiences': 3231, 'concepts': 1935, 'simpler': 8142, 'understanding': 9347, 'large': 5128, 'range': 7186, 'miracle': 5824, 'buying': 1363, 'threads': 9001, 'father': 3369, 'ends': 3041, 'dominates': 2741, 'hearing': 4192, 'lansbury': 5126, 'voice': 9610, 'tomorrow': 9087, 'speech': 8375, 'consider': 1985, 'available': 774, 'portions': 6823, 'rehearsal': 7328, 'miscast': 5831, 'travesty': 9195, 'unable': 9321, 'articulate': 645, 'screwball': 7840, 'interpretations': 4762, 'sometimes': 8310, 'ability': 166, 'settle': 7964, 'appears': 583, 'flock': 3541, 'lesser': 5218, 'scenery': 7796, 'showdown': 8093, 'respects': 7461, 'mostly': 5951, 'blown': 1117, 'worker': 9895, 'offenders': 6309, 'evident': 3166, 'offender': 6308, 'tries': 9228, 'standard': 8457, 'questions': 7128, 'performing': 6635, 'officer': 6318, 'carries': 1481, 'checking': 1620, 'newspapers': 6139, 'supplies': 8724, 'information': 4647, 'responsible': 7466, 'happiness': 4128, 'relief': 7357, 'twice': 9294, 'treating': 9201, 'partner': 6549, 'beaten': 917, 'member': 5712, 'suspense': 8764, 'successful': 8666, 'confusing': 1963, 'irritating': 4825, 'holes': 4327, 'striking': 8591, 'set': 7959, 'pieces': 6703, 'solid': 8292, 'surrounded': 8749, 'sick': 8106, 'distance': 2677, 'happier': 4126, 'point': 6780, 'across': 223, 'schlocky': 7804, 'detectives': 2532, 'getting': 3812, 'banal': 837, 'dialog': 2557, 'unreal': 9407, 'directing': 2613, 'dragging': 2791, 'showed': 8094, 'several': 7971, '80s': 149, 'perplexed': 6643, 'adventure': 290, 'worthy': 9915, 'rent': 7397, 'marylin': 5587, 'monroe': 5901, 'albert': 371, 'einstein': 2966, 'senator': 7908, 'mccarthy': 5640, 'evening': 3151, 'delightful': 2421, 'names': 6052, 'thinly': 8984, 'allegory': 397, 'served': 7951, 'demanding': 2431, 'opus': 6383, 'rewards': 7516, 'levels': 5232, 'intelligence': 4727, 'deliver': 2424, 'united': 9386, 'nations': 6074, 'bent': 1000, 'filming': 3455, 'notorious': 6220, 'led': 5186, 'lovely': 5385, 'interplay': 4759, 'stumbles': 8627, 'suitable': 8692, 'innocence': 4671, 'sex': 7975, 'symbol': 8796, 'enter': 3072, 'determined': 2535, 'assurance': 699, 'support': 8726, 'activities': 231, 'committee': 1881, 'delivering': 2427, 'ultimate': 9315, 'weapon': 9725, 'peace': 6600, 'surprisingly': 8746, 'fragile': 3638, 'vulnerable': 9630, 'gary': 3756, 'busey': 1346, 'hates': 4160, 'believes': 977, 'lover': 5386, 'wants': 9667, 'understands': 9348, 'theory': 8964, 'fears': 3382, 'reveal': 7493, 'haunting': 4164, 'flashbacks': 3512, 'weaknesses': 9722, 'lend': 5203, 'figures': 3446, 'exclusively': 3200, 'shocking': 8060, 'terror': 8924, 'powerful': 6863, 'moment': 5883, 'insignificance': 4683, 'amazing': 436, 'sollett': 8295, 'endearing': 3034, 'portrait': 6824, 'poverty': 6859, 'lower': 5392, 'east': 2914, 'york': 9971, 'locals': 5325, 'mr': 5982, 'dysfunctional': 2894, 'inner': 4670, 'cities': 1712, 'positive': 6837, 'presents': 6912, 'grandmother': 3967, 'taken': 8821, 'wing': 9837, 'presenting': 6911, 'losers': 5369, 'drugs': 2842, 'stealing': 8502, 'parade': 6521, 'stereotypes': 8520, 'inside': 4679, 'defeated': 2396, 'revelation': 7497, 'natural': 6076, 'july': 4959, 'driven': 2828, 'guzman': 4059, 'conveys': 2052, 'frustration': 3696, 'steer': 8508, 'thanks': 8943, 'simon': 8140, 'pegg': 6610, 'continued': 2020, 'trouble': 9253, 'bumbling': 1322, 'ordinary': 6396, 'door': 2756, 'starting': 8479, 'wear': 9727, 'discernible': 2638, 'qualities': 7116, 'rude': 7674, 'obnoxious': 6259, 'frankly': 3655, 'transferred': 9169, 'link': 5286, 'appeal': 575, 'atlantic': 718, 'colleagues': 1818, 'amongst': 454, 'hires': 4299, 'transvestite': 9181, 'stripper': 8595, 'meeting': 5691, 'revenge': 7498, 'boss': 1178, 'kirsten': 5045, 'warm': 9674, 'superficial': 8714, 'megan': 5696, 'sight': 8117, 'possibly': 6845, 'shallow': 8003, 'motions': 5957, 'stretched': 8585, 'huge': 4406, 'plus': 6772, 'longer': 5349, 'bettie': 1024, 'page': 6486, 'gathered': 3761, 'sources': 8341, 'ms': 5984, 'demand': 2430, 'post': 6846, 'naughty': 6081, 'depicts': 2475, 'childhood': 1645, 'combination': 1842, 'christian': 1682, 'upbringing': 9441, 'sordid': 8327, 'hinted': 4292, 'personal': 6647, 'abandoned': 161, 'frames': 3641, 'frame': 3639, 'color': 1830, 'gray': 3983, 'portrays': 6830, 'ladies': 5100, 'friend': 3677, 'assume': 694, 'students': 8618, 'senior': 7913, '2007': 107, 'pig': 6706, 'spit': 8398, 'tube': 9274, 'poorly': 6808, 'crazed': 2149, 'persons': 6651, 'studying': 8624, 'odd': 6294, 'serial': 7943, 'killers': 5030, 'silence': 8128, 'hbo': 4176, 'underlying': 9341, 'chronicles': 1691, 'russian': 7697, 'andrea': 484, 'stephen': 8513, 'rea': 7224, 'reserved': 7446, 'inexperienced': 4634, 'expert': 3236, 'charge': 1595, 'investigation': 4794, 'donald': 2746, 'sutherland': 8770, 'cynical': 2269, 'government': 3943, 'willing': 9825, 'performances': 6631, 'subtle': 8656, 'masterpieces': 5605, 'naive': 6046, 'unwilling': 9436, 'compromise': 1922, 'detached': 2527, 'amused': 464, 'weary': 9730, 'system': 8806, 'passionate': 6563, 'idealistic': 4477, 'jeffrey': 4885, 'inspires': 4695, 'hatred': 4161, 'monster': 5902, 'disgusted': 2660, 'tortured': 9114, 'matter': 5620, 'disturbing': 2697, 'exploding': 3249, 'crashing': 2145, 'upon': 9447, 'sky': 8198, 'captain': 1439, 'jude': 4945, 'adequate': 262, 'metaphor': 5762, 'describe': 2492, 'bat': 886, 'sincerely': 8153, 'doubt': 2768, 'paramount': 6526, 'remarkable': 7376, 'achieve': 214, 'studio': 8621, 'pitch': 6721, 'combine': 1843, '1920': 23, '1940': 35, 'dominate': 2739, 'success': 8664, 'sheer': 8030, 'excess': 3193, 'explosions': 3261, 'unconvincing': 9332, 'shock': 8057, 'awe': 791, 'floating': 3540, 'hundred': 4430, 'moreover': 5932, 'groundbreaking': 4016, 'seamlessly': 7853, 'combining': 1846, 'generated': 3779, 'imagery': 4516, 'stylized': 8642, 'flop': 3544, 'cgi': 1561, 'graphics': 3974, 'amazingly': 437, 'physics': 6689, 'aircraft': 354, 'picky': 6697, 'notice': 6214, 'road': 7576, 'train': 9159, 'unless': 9391, 'voices': 9612, 'rings': 7551, 'troopers': 9250, 'science': 7811, 'tim': 9044, 'burton': 1343, 'batman': 892, 'unique': 9382, 'repeated': 7404, 'positively': 6838, 'ill': 4503, 'mistake': 5849, 'relying': 7365, 'reviews': 7506, 'screening': 7834, 'plant': 6744, 'objective': 6253, 'individual': 4622, 'walked': 9646, 'literal': 5300, 'heard': 4191, 'wolf': 9870, 'woods': 9888, 'struggled': 8608, 'sing': 8154, 'fortunately': 3618, 'tunes': 9278, 'lasted': 5134, 'whoever': 9797, 'seductive': 7880, 'joey': 4917, 'aged': 328, '50': 135, 'pounds': 6857, 'junior': 4967, 'quality': 7117, 'makeup': 5496, 'seriously': 7946, 'vocal': 9607, 'semi': 7907, 'unimaginative': 9376, 'virtual': 9583, 'looked': 5355, 'offensive': 6311, 'crash': 2143, 'chase': 1608, 'rush': 7693, 'holmes': 4334, 'asks': 666, 'watson': 9710, 'record': 7278, 'sleuth': 8216, 'cells': 1542, 'sorry': 8328, 'reasoning': 7257, 'analysis': 473, 'signs': 8127, 'fifty': 3439, 'cam': 1392, 'dealt': 2355, 'charles': 1600, 'bronson': 1271, 'pride': 6941, 'bullets': 1318, 'shoes': 8064, 'mercifully': 5738, 'decide': 2373, 'tack': 8810, 'cinderella': 1701, 'escape': 3114, 'late': 5137, 'victorian': 9543, 'sixties': 8178, 'goer': 3898, 'renting': 7400, 'legend': 5194, 'searching': 7858, 'inspiring': 4696, 'gather': 3760, 'thank': 8941, 'disney': 2669, 'sometime': 8309, 'holds': 4325, 'rights': 7545, 'generations': 3781, 'ahead': 343, 'gerald': 3798, 'busy': 1353, 'forties': 3617, 'fifties': 3438, 'expedition': 3227, 'mars': 5574, 'planet': 6740, 'hayden': 4173, 'resident': 7448, 'jack': 4850, 'billy': 1052, 'goat': 3889, 'beard': 912, 'martian': 5580, 'backdrops': 811, 'ranging': 7189, 'pink': 6716, 'cool': 2066, 'monsters': 5903, 'include': 4584, 'giant': 3821, 'insect': 4676, 'creature': 2163, 'fly': 3554, 'trap': 9182, 'unforgettable': 9368, 'rat': 7206, 'spider': 8386, 'recalled': 7262, 'survivor': 8757, 'influence': 4642, 'hypnotic': 4460, 'angry': 501, 'reportedly': 7417, 'psychedelic': 7053, 'spanish': 8353, 'definitely': 2407, 'silver': 8132, 'conflicts': 1956, 'feelings': 3396, 'strong': 8601, 'nearly': 6090, 'death': 2359, 'melodramatic': 5706, 'connected': 1968, 'dare': 2309, 'pass': 6555, 'block': 1103, 'middle': 5781, 'problems': 6965, 'leaves': 5184, 'mighty': 5786, 'rangers': 7188, 'martial': 5579, 'arts': 651, 'outfits': 6431, 'costumes': 2098, 'plain': 6736, 'worse': 9909, 'toys': 9140, 'plastic': 6746, 'garbage': 3748, 'fed': 3390, 'giving': 3852, 'cried': 2177, 'cry': 2223, 'trinity': 9232, 'wrestler': 9926, 'program': 6993, 'code': 1801, 'follows': 3570, 'stream': 8576, 'oriented': 6401, 'amusing': 466, 'inaccurate': 4571, 'bible': 1033, 'writing': 9935, 'hilariously': 4282, 'horrible': 4371, 'usa': 9458, 'channel': 1581, 'theatrical': 8951, 'released': 7348, 'dud': 2856, 'attitudes': 739, 'roads': 7578, 'chasing': 1611, 'nudity': 6234, 'slapstick': 8203, 'silliness': 8130, 'definite': 2406, 'edward': 2945, 'jr': 4942, 'particularly': 6546, 'aesthetically': 302, 'lackluster': 5096, 'cohesive': 1807, 'charm': 1605, 'oddball': 6295, 'fellow': 3402, 'document': 2719, 'career': 1452, 'misfits': 5836, 'glimpses': 3869, 'insight': 4680, 'portrayal': 6826, 'credit': 2167, 'reviewers': 7504, 'fatal': 3366, 'ellen': 2990, 'talented': 8826, 'greater': 3987, 'paying': 6595, 'beg': 945, 'failure': 3312, 'mask': 5589, 'bleed': 1091, 'kinda': 5037, 'wastes': 9699, 'trivial': 9245, 'details': 2530, 'et': 3134, 'stinks': 8540, 'lieutenant': 5245, 'columbo': 1838, 'ken': 5004, 'franklin': 3654, 'plans': 6743, 'solo': 8296, 'steps': 8516, 'returns': 7489, '1971': 65, 'steven': 8525, 'fame': 3330, 'falk': 3323, 'portray': 6825, 'remakes': 7373, 'murderer': 6005, 'martin': 5582, 'rosemary': 7648, 'barbara': 850, 'met': 5760, 'tragic': 9154, 'homicide': 4343, 'winchester': 9831, '73': 146, 'everyday': 3160, 'rifle': 7540, 'passes': 6560, 'mechanism': 5676, 'telling': 8899, 'rock': 7599, 'hudson': 4404, 'chief': 1643, 'jimmy': 4908, 'stewart': 8528, 'strength': 8582, 'shelly': 8035, 'winters': 9845, 'cope': 2069, 'realities': 7244, 'note': 6210, 'politically': 6795, 'correct': 2089, 'indians': 4615, 'standards': 8458, 'violent': 9578, 'sucks': 8673, 'disgusting': 2661, 'savage': 7773, 'assumed': 695, 'jesus': 4899, 'christ': 1681, 'lame': 5108, 'starr': 8472, 'hasn': 4154, 'python': 7112, 'jokes': 4927, 'gentlemen': 3792, 'weight': 9740, 'hungry': 4435, 'laughing': 5148, 'yellow': 9963, 'teeth': 8894, 'wanna': 9662, 'puke': 7069, 'images': 4517, 'toilet': 9074, 'honest': 4346, 'enjoying': 3060, 'rare': 7204, 'shirley': 8054, 'temple': 8901, 'changed': 1578, 'innocent': 4672, 'viewing': 9556, 'sexually': 7980, 'teenage': 8890, 'boys': 1207, 'lusting': 5437, 'internet': 4758, 'crimes': 2180, 'openly': 6362, 'uncle': 9330, 'dance': 2292, 'disturbed': 2696, 'knew': 5053, 'entered': 3073, 'average': 776, 'beauty': 925, 'contest': 2013, 'merely': 5742, 'pretending': 6923, 'blame': 1082, 'wanting': 9666, 'honesty': 4348, 'media': 5679, 'mentality': 5728, 'chiller': 1652, 'town': 9136, 'doctor': 2717, 'committing': 1882, 'incubus': 4608, 'tight': 9041, 'builds': 1311, 'beat': 916, 'eerie': 2946, 'climatic': 1759, 'intense': 4733, 'gory': 3935, 'squeamish': 8435, 'dread': 2807, 'runs': 7691, 'gothic': 3938, 'stylish': 8640, 'highlight': 4275, 'cassavetes': 1499, 'reporter': 7418, 'helen': 4221, 'hughes': 4412, 'historian': 4302, 'duncan': 2872, 'tormented': 9107, 'psychic': 7056, 'teen': 8889, 'forgotten': 3607, 'discovered': 2641, 'latest': 5140, 'rumor': 7685, 'casting': 1502, 'calls': 1387, '2008': 108, 'tailor': 8817, 'dumped': 2870, 'winner': 9840, 'flavor': 3517, '3rd': 129, 'rumors': 7687, 'specially': 8367, 'featured': 3386, 'hopefully': 4362, 'stating': 8490, 'attention': 737, 'spoiling': 8409, 'library': 5241, 'went': 9754, 'assassin': 673, 'becoming': 933, 'mental': 5727, 'illness': 4506, 'week': 9737, 'honor': 4350, 'beats': 920, 'suffered': 8678, 'excuse': 3203, 'porn': 6818, 'figured': 3445, 'buffs': 1305, 'rank': 7191, 'profound': 6991, 'truth': 9267, 'intentions': 4741, 'granted': 3971, 'expected': 3224, 'accurate': 211, 'scares': 7789, 'decision': 2378, 'accept': 193, 'savior': 7778, 'circumstances': 1710, 'therein': 8968, 'remarkably': 7377, 'scare': 7785, 'actions': 228, 'means': 5666, 'offer': 6312, 'shouldn': 8087, 'soul': 8331, 'adaptation': 244, 'angel': 490, 'stayed': 8497, 'avid': 777, 'reader': 7233, 'adaptations': 245, 'translation': 9175, 'choice': 1663, 'superstar': 8723, 'canadian': 1410, 'christine': 1687, 'chosen': 1679, 'incredible': 4606, 'praise': 6870, 'seek': 7885, 'spring': 8425, 'summer': 8702, 'topics': 9103, 'relate': 7337, 'noise': 6177, 'sleep': 8209, 'basic': 877, 'topic': 9102, 'margarita': 5543, 'altogether': 428, 'biggest': 1040, 'agents': 332, 'boot': 1164, 'kim': 5035, 'skills': 8189, 'glad': 3853, 'mon': 5887, 'changing': 1580, 'pronounce': 7015, 'pop': 6809, 'land': 5115, 'directorial': 2618, 'wenders': 9751, 'hotel': 4387, 'horribly': 4372, 'weak': 9719, 'argue': 613, 'lose': 5367, 'started': 8477, 'words': 9891, 'billed': 1048, 'takashi': 8818, 'miike': 5787, 'presumably': 6920, 'yokai': 9970, 'darkness': 2319, 'grand': 3964, 'fairy': 3318, 'horrors': 4378, 'largely': 5129, 'unaware': 9323, 'evidently': 3167, 'creatures': 2164, 'lack': 5093, 'content': 2012, 'consequence': 1982, 'nervous': 6123, 'accused': 212, 'designed': 2505, 'critics': 2195, 'project': 7001, 'invention': 4788, 'cartoonish': 1490, 'evoking': 3171, 'thoughts': 8998, 'miyazaki': 5863, 'comics': 1863, 'folk': 3563, 'tales': 8829, 'spirited': 8396, 'remembered': 7380, 'harry': 4148, 'potter': 6855, 'obvious': 6276, 'animated': 508, 'mix': 5859, 'cg': 1560, 'motion': 5956, 'puppetry': 7084, 'sock': 8279, 'puppet': 7083, 'cuter': 2263, 'concept': 1933, 'genuine': 3794, 'delicious': 2417, 'river': 7571, 'princess': 6950, 'yum': 9987, 'gangster': 3744, 'wit': 9855, 'satisfy': 7768, 'added': 249, 'happily': 4127, 'community': 1889, 'worlds': 9903, 'marketing': 5562, 'producing': 6978, 'fine': 3471, 'tools': 9098, 'die': 2572, 'player': 6751, 'xp': 9948, 'box': 1198, 'managed': 5509, 'flawlessly': 3521, 'spread': 8423, 'masterful': 5601, 'flawless': 3520, 'moved': 5973, 'spoke': 8410, 'lip': 5290, 'fluid': 3553, 'alive': 393, 'wondering': 9880, 'games': 3739, 'ruin': 7677, 'reputation': 7429, 'devised': 2549, 'sits': 8172, 'alert': 377, 'australia': 762, 'rain': 7162, 'hail': 4074, 'causing': 1526, 'havoc': 4168, 'sydney': 8793, 'hectic': 4213, 'lawyer': 5161, 'chamberlain': 1570, 'defense': 2400, 'attorney': 740, 'aborigine': 169, 'bar': 849, 'aborigines': 170, 'arrested': 633, 'coroner': 2084, 'drowning': 2839, 'neck': 6096, 'court': 2120, 'decided': 2374, 'defending': 2399, 'happened': 4122, 'chris': 1680, 'charlie': 1602, 'spiritual': 8397, 'powers': 6865, 'inherited': 4662, 'mother': 5953, 'grandfather': 3965, 'weather': 9731, 'australian': 763, 'continent': 2016, 'tells': 8900, 'gigantic': 3829, 'cycle': 2266, 'washed': 9693, 'ready': 7237, 'rains': 7165, 'continue': 2019, 'increase': 4602, 'ocean': 6291, 'waves': 9712, 'folklore': 3564, 'scientific': 7812, 'facts': 3303, 'members': 5713, 'tribe': 9219, 'alone': 411, 'tribal': 9218, 'tribes': 9220, 'native': 6075, 'convicted': 2054, 'sentences': 7927, 'judge': 4946, 'betrayed': 1019, 'visions': 9591, 'wave': 9711, 'rolling': 7621, 'minor': 5817, 'morning': 5939, 'pa': 6473, 'tag': 8815, 'opens': 6363, 'li': 5236, 'mommy': 5886, 'christopher': 1689, 'warrior': 9687, 'loose': 5360, 'quick': 7129, 'brain': 1212, 'yeah': 9958, 'guns': 4051, 'crappy': 2142, 'fight': 3440, 'phil': 6668, 'collins': 1824, 'light': 5254, 'shines': 8048, 'kansas': 4979, 'shred': 8099, 'btk': 1291, 'bucks': 1296, 'worry': 9908, 'dookie': 2753, 'eat': 2918, 'describing': 2495, 'animal': 506, 'suits': 8696, 'merits': 5745, 'surviving': 8756, 'blazing': 1089, 'grow': 4021, 'caring': 1463, 'holiday': 4328, '90': 152, 'definately': 2402, 'bottom': 1187, 'imo': 4542, 'bob': 1131, 'thornton': 8992, 'earl': 2900, 'natasha': 6068, 'richardson': 7527, 'darlene': 2320, 'patrick': 6580, 'swayze': 8775, 'roy': 7666, 'candy': 1417, 'girlfriend': 3846, 'gonna': 3917, 'pregnant': 6895, 'meaningless': 5665, 'officers': 6319, 'beer': 939, 'pointless': 6783, 'relevant': 7354, 'talk': 8831, 'cheated': 1617, 'yuck': 9984, 'canyon': 1426, 'belt': 988, 'aardman': 158, 'introducing': 4779, 'twisted': 9299, 'comforts': 1860, 'derived': 2489, 'slice': 8218, 'snippets': 8265, 'removed': 7391, 'speed': 8377, 'asking': 665, 'answers': 532, 'seeming': 7890, 'mundane': 6000, 'statements': 8487, 'discussing': 2650, 'smells': 8248, 'birds': 1061, 'cage': 1374, 'health': 4187, 'suffering': 8679, 'legs': 5198, 'tired': 9061, 'carter': 1488, 'pills': 6710, 'catches': 1512, '60': 138, 'leon': 5210, 'fleshed': 3531, 'complaint': 1909, 'abrupt': 175, 'sequel': 7937, 'sci': 7810, 'fi': 3422, 'damme': 2286, 'vietnam': 9550, 'vets': 9529, 'revived': 7507, 'soldiers': 8288, 'unisols': 9384, 'guess': 4036, 'classified': 1735, 'unisol': 9383, 'usual': 9467, 'named': 6050, 'seth': 7960, 'snake': 8257, 'cobra': 1800, 'evolution': 3172, 'fights': 3443, 'pro': 6962, 'goldberg': 3907, 'keeps': 4998, 'truck': 9257, 'shoot': 8066, 'burn': 1333, 'edges': 2932, 'sequels': 7938, 'pale': 6503, 'imitations': 4531, 'originals': 6406, 'stroke': 8599, 'consistently': 1994, 'wrestling': 9928, 'pile': 6708, 'sh': 7985, 'tied': 9036, 'crap': 2141, 'mentioning': 5732, 'damn': 2287, 'admirer': 268, 'dietrich': 2576, 'blond': 1106, 'tremendous': 9209, 'stiff': 8532, 'religious': 7360, 'guilt': 4043, 'suffice': 8681, 'photography': 6684, 'technicolor': 8879, 'smith': 8252, 'basil': 880, 'rathbone': 7209, 'carradine': 1476, 'outlandish': 6433, 'caricature': 1461, 'sand': 7744, 'diviner': 2706, 'conceived': 1928, 'annoyance': 522, 'mgm': 5772, 'volume': 9616, 'incoherent': 4589, 'cliché': 1753, 'crocodile': 2197, 'hunter': 4440, 'discovery': 2645, 'steve': 8524, 'antics': 540, 'distracting': 2689, 'unnecessary': 9398, 'reaction': 7230, 'heavily': 4209, 'suffers': 8680, 'unfunny': 9371, 'watchable': 9702, 'rainy': 7166, 'afternoon': 322, 'eric': 3106, 'stoltz': 8544, 'delivers': 2428, 'extraordinary': 3280, 'joel': 4916, 'novelist': 6224, 'winds': 9835, 'hospital': 4381, 'disabled': 2623, 'hiking': 4280, 'learning': 5179, 'gravity': 3982, 'physical': 6687, 'befriends': 944, 'slick': 8219, 'talking': 8835, 'wesley': 9761, 'snipes': 8264, 'racist': 7150, 'biker': 1042, 'terrific': 8920, 'forsythe': 3615, 'threatened': 9003, 'diverse': 2700, 'multi': 5995, 'ethnic': 3140, 'array': 632, 'share': 8016, 'receives': 7265, 'substantial': 8654, 'loyal': 5397, 'anna': 514, 'hunt': 4438, 'triumph': 9242, 'neil': 6112, 'thoughtful': 8997, 'insightful': 4681, 'exceptional': 3190, 'warmth': 9677, 'specifically': 8371, 'addressing': 259, 'lifestyle': 5249, 'powerfully': 6864, 'sequence': 7939, 'fail': 3308, 'motel': 5952, 'besides': 1011, 'raw': 7219, 'highlighted': 4276, 'strip': 8594, 'club': 1785, 'uniformly': 9374, 'qualifies': 7114, 'significant': 8125, 'outstanding': 6441, 'doting': 2765, 'amiable': 447, 'grim': 4005, 'uplifting': 9446, 'cinematic': 1704, 'spirit': 8395, 'gem': 3770, 'subtitles': 8655, 'grossly': 4013, 'fairly': 3316, 'improved': 4565, 'overlook': 6455, 'overacted': 6444, 'hoffman': 4320, 'gathers': 3762, 'reunion': 7491, 'twin': 9296, 'shape': 8011, 'reminded': 7384, 'wilderness': 9819, 'choosing': 1668, 'ass': 672, 'kat': 4986, 'masterson': 5607, 'underground': 9340, 'military': 5793, 'experiments': 3235, 'serves': 7952, 'safety': 7719, 'novelty': 6226, 'realize': 7247, 'former': 3610, 'identity': 4483, 'shed': 8028, 'hiding': 4271, 'remains': 7371, 'near': 6088, 'portion': 6822, 'stays': 8499, 'leaps': 5176, 'dawson': 2337, 'bland': 1084, 'relatively': 7345, 'experience': 3229, 'maggie': 5473, 'fog': 3561, 'draw': 2802, 'rules': 7684, 'technically': 8878, 'inept': 4630, 'gotta': 3939, 'buddies': 1298, 'game': 3738, 'featurette': 3388, 'finger': 3476, 'paint': 6493, 'awesome': 792, 'commentary': 1872, 'tracking': 9144, 'smooth': 8255, 'drivel': 2827, 'develop': 2538, 'heroine': 4255, 'disorder': 2670, 'lived': 5309, 'institution': 4707, 'anti': 537, 'psychotic': 7063, 'allowed': 402, 'bag': 824, 'redeeming': 7291, 'tried': 9226, 'aid': 344, 'quest': 7125, 'speaks': 8364, 'characteristics': 1591, 'remaking': 7374, 'psycho': 7057, 'idiot': 4487, 'proving': 7045, 'outset': 6439, 'marky': 5564, 'mark': 5558, 'characteristic': 1590, 'prefers': 6893, 'establishing': 3129, 'station': 8491, 'saturn': 7771, 'apparent': 573, 'ship': 8051, 'genetic': 3784, 'apes': 565, '300': 122, 'conduct': 1948, 'chimp': 1657, 'staple': 8465, '60s': 139, 'warp': 9683, 'security': 7878, 'pod': 6774, 'noticing': 6217, 'simultaneously': 8148, 'demonstrating': 2445, 'stupidity': 8636, 'rescue': 7436, 'mission': 5846, 'worm': 9904, 'hole': 4326, 'test': 8929, 'fuel': 3699, 'alien': 386, 'helmet': 4231, 'chased': 1609, 'resembles': 7445, 'lush': 5435, 'trees': 9206, 'surprise': 8742, 'thirty': 8987, 'bust': 1350, 'rap': 7196, 'clarke': 1727, 'gorilla': 3933, 'inserted': 4678, 'immensely': 4536, 'helena': 4222, 'aka': 362, 'activist': 230, 'shakespearean': 7998, 'cardboard': 1448, 'paul': 6587, 'slave': 8206, 'token': 9075, 'grown': 4023, 'captured': 1442, 'essence': 3124, 'imagining': 4525, 'roth': 7651, 'extras': 3281, 'bc': 903, 'thade': 8937, 'chews': 1638, 'amounts': 458, 'lacked': 5094, 'mad': 5458, '1968': 61, 'charlton': 1604, 'heston': 4262, 'taylor': 8864, 'mankind': 5520, 'progressed': 6998, 'unwittingly': 9437, 'sole': 8289, 'salvation': 7736, 'discovers': 2644, 'statue': 8493, 'liberty': 5239, 'species': 8369, 'cerebral': 1556, 'leo': 5209, 'humans': 4422, 'landed': 5116, 'sensual': 7923, 'armor': 624, 'deserved': 2500, 'arrogance': 638, 'ludicrous': 5413, 'landing': 5117, '2001': 101, 'complaining': 1908, 'evolved': 3174, 'overacting': 6445, 'hairy': 4079, 'established': 3128, 'maverick': 5629, 'mute': 6025, 'expectations': 3223, 'currently': 2249, 'ape': 564, 'dominated': 2740, 'charisma': 1598, 'instill': 4704, 'monitor': 5893, 'drawing': 2803, 'throw': 9018, 'shoe': 8063, 'icon': 4470, 'alike': 390, 'irony': 4816, 'apt': 598, 'elevated': 2983, 'chewing': 1637, 'technique': 8880, 'dad': 2273, 'dumb': 2866, 'dumber': 2867, 'beating': 918, 'lesson': 5219, 'demonstrate': 2443, 'muttering': 6027, 'teach': 8867, 'monkeys': 5896, 'firstly': 3490, 'secondly': 7868, 'imbecilic': 4526, 'intend': 4730, 'blowing': 1116, 'confuse': 1961, 'warren': 9686, 'integral': 4722, 'cop': 2068, 'accomplished': 205, 'contained': 2005, 'delivered': 2426, 'constant': 1998, 'discovering': 2643, 'toughness': 9126, 'actresses': 236, 'prisoners': 6958, 'preparing': 6905, 'tolerance': 9079, 'resolve': 7451, 'tested': 8931, 'naked': 6047, 'demands': 2432, 'attributes': 745, 'attitude': 738, 'guts': 4056, 'respond': 7462, 'demme': 2438, 'debut': 2366, 'mentor': 5734, 'roger': 7614, 'desire': 2509, 'stamp': 8453, 'define': 2403, 'current': 2248, 'psychological': 7058, 'states': 8488, 'particular': 6545, 'featuring': 3389, 'warden': 9670, 'de': 2345, 'clockwork': 1768, 'orange': 6386, 'planning': 6742, 'daring': 2312, 'chair': 1564, 'bound': 1191, 'nutty': 6246, 'doc': 2715, 'miller': 5797, 'brown': 1282, 'sassy': 7762, 'sister': 8167, 'environment': 3091, 'fear': 3381, 'cross': 2202, 'wilson': 9828, 'prisoner': 6957, 'sentenced': 7926, 'belle': 980, 'ella': 2989, 'reid': 7330, 'obsession': 6271, 'mcqueen': 5656, 'remove': 7390, 'nude': 6233, 'hugging': 4409, 'arms': 625, 'murdering': 6007, 'relative': 7344, 'dirty': 2622, 'effectively': 2949, 'finale': 3463, 'planned': 6741, 'inflicted': 4641, 'gunfire': 4048, 'impressed': 4558, 'photographic': 6682, 'cinematographer': 1705, 'establish': 3127, 'rooms': 7640, 'task': 8855, 'appropriately': 595, 'crummy': 2218, 'inmates': 4669, 'longing': 5351, 'pits': 6724, 'souls': 8332, 'horrid': 4373, 'madness': 5466, 'repressed': 7425, 'glasses': 3861, 'behaviors': 961, 'contempt': 2010, 'push': 7103, 'handling': 4106, 'uncanny': 9329, 'alliance': 400, 'oppressive': 6379, 'humorous': 4427, 'colorful': 1831, 'personalities': 6648, 'joining': 4923, 'bank': 845, 'robbery': 7586, 'progress': 6997, 'rob': 7582, 'solitary': 8293, 'cat': 1508, 'escapes': 3116, 'horrifying': 4376, 'therapy': 8965, 'session': 7957, 'advantage': 289, 'relates': 7339, 'pretension': 6925, 'hopes': 4365, 'pleased': 6760, 'lee': 5188, 'bang': 844, 'hurt': 4448, 'eyebrows': 3287, 'sale': 7729, 'wondered': 9877, 'macmurray': 5456, 'carole': 1472, 'lombard': 5343, 'table': 8807, 'adaption': 247, 'burlesque': 1332, 'popular': 6815, 'ran': 7180, 'broadway': 1266, '1928': 26, 'stanwyck': 8464, 'originated': 6407, 'starred': 8473, 'nancy': 6055, 'carroll': 1482, 'talkies': 8834, 'betty': 1025, 'grable': 3949, 'dan': 2290, 'smiles': 8250, 'album': 372, 'al': 365, 'ruby': 7672, 'singer': 8155, 'jazz': 4877, 'trumpeter': 9263, 'latin': 5141, 'anthony': 535, 'quinn': 7135, 'swing': 8786, 'century': 1555, 'jason': 4873, 'freddy': 3662, 'workout': 9899, 'unseen': 9417, 'deserves': 2502, 'explanation': 3243, 'clarify': 1725, 'acquired': 222, 'oddly': 6296, 'classes': 1731, 'earnest': 2905, 'capable': 1429, 'stopping': 8552, 'factor': 3300, 'dies': 2575, 'sessions': 7958, 'explosive': 3262, 'beds': 936, 'hundreds': 4431, 'exposed': 3264, 'measure': 5670, 'uncomfortable': 9331, 'creepy': 2173, 'creative': 2159, 'creativity': 2160, 'ignore': 4496, 'premise': 6901, 'unusual': 9431, 'ghost': 3815, 'medium': 5687, 'narration': 6058, 'path': 6571, 'peaks': 6604, 'charges': 1597, 'escaping': 3117, 'kidnaps': 5025, 'downward': 2781, 'aspects': 669, 'strongest': 8603, 'aspect': 668, 'aside': 662, 'amount': 457, 'convinced': 2058, 'ruthless': 7702, 'bold': 1143, 'punches': 7079, 'anal': 470, 'boundaries': 1192, 'ignored': 4497, 'gladly': 3854, 'achieved': 215, 'noticeable': 6215, 'grade': 3955, 'equipment': 3101, 'choices': 1664, 'cemetery': 1544, 'issue': 4836, 'grave': 3980, 'imply': 4549, 'loosely': 5361, 'firm': 3487, 'dishonest': 2663, 'kidnap': 5023, 'torture': 9113, 'likewise': 5269, 'ma': 5445, 'overly': 6457, 'cruel': 2213, 'sadistic': 7714, 'marginally': 5545, 'neighbor': 6109, 'offering': 6314, 'fool': 3577, 'claims': 1722, 'vast': 9500, 'majority': 5491, 'nap': 6057, 'netflix': 6126, 'warned': 9679, 'knowing': 5064, 'campy': 1407, 'exception': 3189, 'kevin': 5012, 'ritter': 7568, 'halfway': 4083, 'riley': 7546, 'exceptionally': 3191, 'shocked': 8058, 'ultra': 9317, 'fantasies': 3343, 'technological': 8883, 'nobody': 6172, 'cares': 1457, 'mocking': 5869, 'core': 2077, 'edgy': 2933, 'random': 7182, 'grainy': 3962, 'boxers': 1200, 'faces': 3296, 'digs': 2592, 'cultists': 2236, 'overtones': 6460, 'writes': 9934, 'produces': 6977, 'coffee': 1803, 'element': 2979, 'keeping': 4997, 'cinematography': 1706, 'witnessed': 9865, 'plan': 6737, 'witness': 9864, 'stiles': 8533, 'unsuccessful': 9421, 'trite': 9240, 'forgettable': 3601, 'entirely': 3086, 'wiped': 9846, 'records': 7281, 'realized': 7248, 'likely': 5267, 'anybody': 551, 'collection': 1820, 'rid': 7531, 'hand': 4100, 'mud': 5989, 'window': 9833, 'deed': 2389, 'sgt': 7984, 'dylan': 2891, 'mcdermott': 5646, 'practice': 6869, 'dealer': 2351, 'conflict': 1955, 'conscience': 1980, 'freeman': 3666, 'spacey': 8350, 'promise': 7008, 'justin': 4975, 'timberlake': 9045, 'pollack': 6799, 'opportunity': 6373, 'repeatedly': 7405, 'choose': 1666, 'craft': 2135, 'sells': 7904, 'millions': 5800, 'automatically': 772, 'translate': 9173, 'successfully': 8667, 'hardcore': 4133, 'sync': 8803, 'sudden': 8674, 'sniper': 8263, 'operation': 6367, 'machinery': 5451, 'thoroughly': 8993, 'alfred': 381, 'hitchcock': 4309, 'revolves': 7512, 'pompous': 6801, 'jumps': 4964, 'sees': 7894, 'stranded': 8566, 'rescued': 7437, 'fishing': 3495, 'boat': 1130, 'joan': 4910, 'barry': 866, 'unfaithful': 9365, 'sly': 8239, 'grew': 4002, 'ustinov': 9466, 'wanders': 9660, 'breath': 1236, 'inconsequential': 4596, 'embezzler': 3003, 'posing': 6835, 'secretary': 7871, 'fired': 3483, 'deadpan': 2348, 'karl': 4984, 'malden': 5500, 'sleazy': 8208, 'coup': 2114, 'dazzling': 2342, 'seat': 7862, 'rating': 7211, 'politics': 6798, 'nerve': 6121, 'ride': 7533, 'product': 6979, 'hip': 4294, 'hop': 4358, 'electronic': 2975, 'generation': 3780, 'authentic': 764, 'strings': 8593, 'culture': 2238, 'dj': 2713, 'cheesy': 1625, 'competition': 1905, 'steady': 8500, 'nyc': 6248, 'essential': 3125, 'athletic': 717, 'stylistic': 8641, 'seasoned': 7860, 'nation': 6071, 'journalist': 4934, 'forward': 3622, 'critical': 2190, 'britain': 1262, 'ealing': 2898, 'comedies': 1853, 'victory': 9544, '1945': 40, 'hearts': 4202, 'satire': 7765, 'upper': 9448, 'mob': 5864, 'contain': 2004, 'political': 6794, 'applied': 586, 'pimlico': 6713, 'district': 2693, 'mile': 5791, 'victoria': 9542, 'independent': 4610, 'area': 609, 'iv': 4847, 'wishes': 9853, 'inhabitants': 4658, 'royal': 7667, 'laws': 5160, 'sell': 7901, 'whomever': 9801, 'goods': 3924, 'authorities': 767, 'horrified': 4375, 'suit': 8691, 'larger': 5130, 'bureaucracy': 1327, 'imposed': 4553, 'accepted': 196, 'growing': 4022, 'reviewer': 7503, 'stated': 8485, 'targets': 8852, 'targeted': 8851, 'san': 7743, '1949': 43, 'keen': 4995, 'stress': 8583, 'patriotism': 6581, 'sticking': 8530, 'contrast': 2028, 'presented': 6910, 'uk': 9314, 'drops': 2836, 'pour': 6858, 'global': 3871, 'warming': 9676, 'slightly': 8224, 'belief': 971, 'contrary': 2027, 'wet': 9765, 'stanley': 8463, 'arthur': 644, 'politician': 6796, 'cameo': 1396, 'margaret': 5542, 'pulling': 7072, 'ensemble': 3068, 'contribution': 2032, 'recent': 7267, 'favourite': 3377, 'hilarity': 4283, 'struggles': 8609, 'recreate': 7285, 'neatly': 6092, 'exploit': 3250, 'shamelessly': 8008, 'males': 5502, 'kick': 5017, 'honestly': 4347, 'wishing': 9854, 'demise': 2437, 'spare': 8354, 'uwe': 9473, 'boll': 1144, 'challenge': 1565, 'produce': 6973, 'arguably': 612, 'section': 7874, 'zombies': 9996, 'cap': 1427, 'zombie': 9995, 'meaning': 5663, 'harmless': 4140, 'blood': 1109, 'closet': 1777, 'bursts': 1341, 'bin': 1054, 'milk': 5794, 'decaying': 2370, 'according': 207, 'received': 7264, 'cinemas': 1703, 'separate': 7933, 'rolled': 7619, 'mentions': 5733, 'abruptly': 176, 'replaced': 7411, 'inane': 4572, 'cleaning': 1744, 'apartment': 561, 'wong': 9883, 'wai': 9634, 'hidden': 4267, 'acted': 225, 'brighter': 1254, 'angelina': 493, 'jolie': 4928, 'sweet': 8780, 'changes': 1579, 'optimistic': 6381, 'curly': 2247, 'sue': 8676, 'touched': 9122, 'los': 5366, 'south': 8342, 'confident': 1952, 'streetwise': 8580, 'elder': 2971, '17th': 15, 'birthday': 1063, 'manipulative': 5519, 'mistress': 5854, 'unfolds': 9367, 'overt': 6459, 'pacing': 6476, 'explicit': 3245, 'points': 6784, 'memento': 5714, 'pulp': 7075, 'evolve': 3173, 'chile': 1650, 'countries': 2109, 'skits': 8196, 'joke': 4926, 'fest': 3413, 'groove': 4011, 'proper': 7019, 'uber': 9310, 'olympics': 6343, 'clown': 1784, 'ninety': 6162, 'dung': 2873, 'model': 5872, 'kentucky': 5009, 'fried': 3676, 'skit': 8195, 'lifetime': 5250, 'credibility': 2165, 'lara': 5127, 'patti': 6584, 'blink': 1101, 'threatening': 9004, 'dares': 2310, 'behave': 956, 'trusted': 9266, 'medicine': 5682, 'stairs': 8447, 'scale': 7784, '95': 154, 'batch': 887, 'popcorn': 6810, 'apple': 585, 'respectable': 7457, 'nevertheless': 6131, 'embarrassed': 2999, 'depressed': 2478, 'goodness': 3923, 'twists': 9300, 'james': 4861, 'belushi': 989, 'hood': 4351, 'stolen': 8543, '12': 8, 'gangsters': 3745, 'sheriff': 8039, 'timothy': 9054, 'dalton': 2282, 'wont': 9884, 'jump': 4961, 'board': 1125, 'minute': 5820, 'trip': 9234, 'eating': 2921, 'sensitive': 7921, 'bulimia': 1314, 'causes': 1525, 'alison': 392, 'lohman': 5339, 'spectacular': 8373, 'schools': 7807, 'convey': 2048, 'anguish': 503, 'pressure': 6917, 'degree': 2411, 'accuracy': 210, 'precise': 6881, 'measured': 5671, 'trauma': 9188, 'rising': 7561, 'hysteria': 4463, 'desperation': 2516, 'reaches': 7227, 'unbearable': 9324, 'intensity': 4735, 'immense': 4535, 'finely': 3472, 'achievement': 216, 'shea': 8027, 'proud': 7036, 'despair': 2513, 'sympathise': 8800, 'depths': 2482, 'sympathetic': 8799, 'motives': 5962, 'fresh': 3671, 'hackneyed': 4066, 'hokey': 4321, 'strikes': 8590, 'pseudo': 7051, 'enlightenment': 3063, 'religion': 7359, 'hide': 4268, 'oz': 6471, 'precious': 6880, 'resources': 7455, 'water': 9706, 'shut': 8103, 'photographer': 6681, 'roommate': 7639, 'cartoon': 1489, 'cousin': 2123, 'sensibilities': 7918, 'perspective': 6652, 'sixty': 8179, 'hyper': 4459, 'faded': 3306, 'lighten': 5255, 'float': 3539, 'caricatures': 1462, 'celebrities': 1538, 'cartoons': 1491, '1930s': 29, '1940s': 36, 'terribly': 8919, 'crosby': 2201, 'hated': 4158, 'occasion': 6279, 'sigh': 8116, 'drab': 2786, 'suspenseful': 8765, 'despicable': 2517, 'bernsen': 1008, 'benefits': 995, 'performers': 6634, 'rated': 7208, 'gene': 3775, 'behaves': 958, 'el': 2969, 'yesterday': 9966, 'sickness': 8108, 'sexuality': 7979, 'rage': 7156, 'filled': 3449, 'suffer': 8677, 'clean': 1742, 'blues': 1120, '1944': 39, 'jam': 4860, 'marie': 5548, 'sunny': 8708, 'bring': 1258, 'exposure': 3267, 'musicians': 6018, 'angles': 499, '40s': 131, 'notes': 6212, 'filmed': 3454, 'reflection': 7310, 'youtube': 9983, 'skin': 8190, 'scariest': 7791, 'myers': 6029, 'boogeyman': 1159, 'terrifying': 8922, 'effect': 2947, 'loomis': 5358, 'describes': 2494, 'devil': 2548, 'jamie': 4862, 'partying': 6553, 'virgin': 9580, 'pays': 6596, 'janet': 4865, 'leigh': 5199, 'lock': 5330, 'doors': 2757, 'windows': 9834, 'indie': 4620, 'blow': 1115, 'alot': 414, 'theaters': 8948, 'vhs': 9530, '1992': 88, 'reflect': 7307, 'values': 9485, 'schemes': 7801, 'debt': 2365, 'economic': 2924, 'exploits': 3254, 'forcing': 3592, 'cards': 1449, 'raises': 7169, 'saving': 7777, 'streisand': 8581, 'familiar': 3332, 'performer': 6633, 'celine': 1540, 'vibrancy': 9533, 'energy': 3047, 'enthusiasm': 3083, 'vulnerability': 9629, 'performs': 6636, 'park': 6532, 'concert': 1940, 'spontaneous': 8412, 'rehearsed': 7329, 'wall': 9651, 'ticket': 9033, 'vocals': 9608, 'judy': 4953, 'rodgers': 7610, 'harold': 4141, '1970s': 64, 'albums': 373, 'shrieking': 8101, 'struggle': 8607, 'improve': 4564, 'singers': 8156, 'melodies': 5703, 'undoubtedly': 9357, 'blows': 1118, 'crawford': 2148, 'cd': 1531, 'reminding': 7385, 'insist': 4685, 'duets': 2861, 'advised': 298, 'highway': 4279, 'cbs': 1530, 'guests': 4040, 'treat': 9199, 'phenomenon': 6667, 'amazed': 435, 'difference': 2578, '01': 2, '1st': 97, 'barbra': 854, 'orchestra': 6389, 'bored': 1171, 'shorter': 8079, 'rendition': 7394, 'auto': 770, 'pilot': 6711, '2nd': 120, 'depression': 2480, 'amidst': 449, 'goodman': 3922, 'historic': 4303, 'dislike': 2665, 'tears': 8875, 'sun': 8705, 'medley': 5688, 'explaining': 3241, 'fanny': 3341, 'sang': 7748, '1922': 25, 'dress': 2816, 'gown': 3945, 'urgent': 9455, 'charged': 1596, 'glimpse': 3868, 'understated': 9349, 'boxing': 1202, 'prevents': 6933, 'calling': 1386, 'robert': 7589, 'wise': 9849, 'newman': 6135, 'likes': 5268, 'corbett': 2076, 'sport': 8417, 'crucial': 2211, 'transition': 9172, 'bare': 856, 'gloved': 3880, 'illegal': 4504, 'spectacle': 8372, 'acceptance': 195, 'delightfully': 2422, 'alexis': 380, 'win': 9830, 'match': 5610, 'sullivan': 8697, 'romanticism': 7627, 'sports': 8418, 'move': 5972, 'raging': 7158, 'bull': 1316, 'expressed': 3269, 'emotion': 3013, 'steam': 8504, 'annual': 527, 'rounds': 7659, 'seats': 7863, 'farting': 3355, 'filler': 3450, 'wizard': 9869, 'insists': 4688, 'critique': 2196, 'defeats': 2397, 'quarter': 7119, 'rogers': 7615, 'surprises': 8744, 'provided': 7042, 'imaginations': 4521, 'originally': 6405, 'propaganda': 7018, 'fathers': 3370, 'experienced': 3230, 'imitation': 4530, 'copious': 2072, 'pain': 6489, 'bloodless': 1111, 'shattering': 8024, 'ho': 4316, 'assigned': 683, 'hopper': 4368, 'investigate': 4792, 'pains': 6492, 'prevented': 6931, 'squandered': 8433, 'horse': 4379, 'dickens': 2567, 'bath': 889, 'convoluted': 2062, 'improbable': 4563, 'reactions': 7231, 'exist': 3211, 'dry': 2848, 'productive': 6982, 'investment': 4796, '2003': 103, 'expectation': 3222, 'perverse': 6655, 'japan': 4870, 'unnatural': 9396, 'kinky': 5042, 'fathom': 3371, 'sights': 8119, 'notably': 6208, 'fare': 3349, 'designs': 2508, 'gruesome': 4027, 'balance': 830, 'unlikely': 9395, 'prestigious': 6918, 'catch': 1511, 'trained': 9160, 'grasp': 3975, 'execution': 3207, 'tradition': 9149, 'carmen': 1469, 'spears': 8365, 'wannabe': 9663, 'ears': 2907, 'supreme': 8733, 'teachers': 8869, 'standing': 8459, 'teacher': 8868, 'induced': 4625, 'taped': 8845, 'pregnancy': 6894, 'affects': 309, 'demonstrated': 2444, 'childish': 1646, 'properly': 7020, 'educated': 2942, 'whiny': 9790, 'fruit': 3693, 'wore': 9892, 'eight': 2962, 'edition': 2940, 'riot': 7552, 'oblivious': 6258, 'spy': 8430, 'dining': 2604, 'dewey': 2554, 'rip': 7553, 'penn': 6617, 'chances': 1574, 'seasons': 7861, 'unfortunate': 9369, 'depicting': 2472, 'bravo': 1226, 'cooper': 2067, 'winter': 9844, 'capsule': 1437, 'roaring': 7580, 'imagined': 4524, 'mountain': 5965, 'brutally': 1289, 'disappear': 2625, 'believed': 975, 'signed': 8123, 'certificate': 1559, 'authenticity': 765, 'offered': 6313, 'iranian': 4808, 'appreciated': 588, 'anthropologist': 536, 'sufficient': 8682, 'stock': 8541, 'recorded': 7279, 'fancy': 3338, 'resulting': 7475, 'multiple': 5996, 'inter': 4742, 'titles': 9066, 'spin': 8392, 'peoples': 6620, 'duty': 2882, 'desert': 2497, 'ball': 832, 'chang': 1576, 'commercial': 1876, 'kong': 5070, '1933': 30, 'wind': 9832, '1976': 70, '1999': 95, 'lumet': 5422, 'ground': 4015, 'flops': 3545, 'held': 4220, 'till': 9042, 'financial': 3466, 'suburban': 8659, 'jewelry': 4902, 'owned': 6467, 'elderly': 2972, 'concerned': 1937, 'aftermath': 321, 'differing': 2582, 'older': 6332, 'carrying': 1485, 'vice': 9535, 'versa': 9520, 'hardly': 4135, 'accounts': 209, 'heroin': 4254, 'scheming': 7802, 'seymour': 7982, 'supported': 8727, 'ethan': 3139, 'hawke': 4170, 'bullied': 1319, 'finney': 3480, 'marisa': 5555, 'tomei': 9085, 'cheating': 1618, 'puts': 7108, 'literally': 5301, 'comfort': 1856, 'origins': 6408, 'kelly': 5003, 'untrue': 9430, 'turkeys': 9284, 'downbeat': 2773, 'lucky': 5411, 'hear': 4190, 'redundant': 7297, 'conclude': 1941, 'unhappy': 9372, 'cats': 1520, 'phantom': 6664, 'opera': 6364, 'lloyd': 5316, 'musicals': 6016, 'literary': 5302, 'framework': 3642, 'indonesian': 4624, 'explore': 3256, 'tends': 8908, 'awkward': 796, 'goofy': 3928, 'martians': 5581, 'russell': 7696, 'deputy': 2483, 'dentist': 2455, 'cheadle': 1614, 'meets': 5693, 'fineman': 3473, 'adam': 242, 'sandler': 7745, 'lonely': 5347, 'deranged': 2485, 'daughters': 2331, 'september': 7936, '11th': 7, 'discuss': 2648, 'friendship': 3680, 'fix': 3503, 'psychologist': 7060, 'angela': 491, 'liv': 5307, 'tyler': 9303, 'aggressive': 334, 'send': 7909, 'reign': 7331, 'loneliness': 5346, 'irrelevant': 4818, 'fire': 3482, 'donna': 2748, 'saffron': 7720, 'burrows': 1338, 'excessive': 3195, 'brazil': 1228, 'kline': 5052, 'fields': 3431, 'toss': 9116, 'downey': 2774, 'kathy': 4989, 'moriarty': 5937, 'soap': 8272, 'floor': 3542, 'price': 6939, 'daytime': 2340, 'lake': 5105, 'ranking': 7192, 'manos': 5528, 'useless': 9462, 'dinosaur': 2607, 'hits': 4311, 'thrilling': 9012, 'described': 2493, 'drags': 2794, 'ponderous': 6803, 'bulk': 1315, 'lunch': 5427, 'bumps': 1323, 'boredom': 1172, 'moron': 5940, 'subplot': 8649, 'liquor': 5292, 'purchase': 7087, '75': 147, 'shoots': 8071, 'magician': 5477, 'redneck': 7295, 'cave': 1529, 'dopey': 2758, 'pad': 6483, 'closing': 1778, 'europa': 3142, 'impressive': 4561, 'wake': 9641, 'comparison': 1898, 'bay': 901, 'trier': 9227, 'dancer': 2293, 'un': 9320, 'noticed': 6216, 'experts': 3238, 'whilst': 9785, 'overrated': 6458, 'tiger': 9040, 'dragon': 2792, 'absent': 178, 'channels': 1582, 'mtv': 5986, 'gloss': 3878, 'hypnotized': 4461, 'tracks': 9145, 'narrator': 6061, 'max': 5631, 'sydow': 8794, 'counts': 2112, 'allows': 404, 'conventions': 2045, 'interact': 4743, 'item': 4843, 'jean': 4880, 'marc': 5536, 'par': 6519, 'blind': 1099, 'opposing': 6375, 'muck': 5988, 'nightmare': 6156, 'continuing': 2022, 'cannon': 1421, 'wealth': 9723, 'iconic': 4471, 'dedication': 2387, 'en': 3027, 'design': 2504, 'melodramas': 5705, 'imaginative': 4522, 'blinded': 1100, 'foundation': 3629, 'addresses': 258, 'tend': 8905, 'numerous': 6239, 'tepid': 8913, 'lively': 5310, 'caliber': 1382, 'awhile': 795, 'insane': 4674, 'sixteen': 8177, 'decidedly': 2375, 'killing': 5031, 'everybody': 3159, 'mystical': 6040, 'unwashed': 9434, 'priest': 6942, 'tiny': 9058, 'ritual': 7569, 'mass': 5594, 'corpses': 2088, 'boyfriend': 1205, 'crushed': 2221, 'spine': 8394, 'tempted': 8902, 'cheer': 1622, 'loudly': 5378, 'kiss': 5046, 'sucking': 8672, 'introspective': 4781, 'emphasis': 3020, 'screaming': 7830, 'compassion': 1900, 'jodie': 4914, 'foster': 3625, 'born': 1175, 'fade': 3305, 'frustrated': 3694, 'onto': 6357, 'desperately': 2515, 'plate': 6747, 'vanity': 9492, 'hides': 4270, 'party': 6552, 'whispered': 9794, 'grounded': 4017, 'hang': 4110, 'goodbye': 3920, 'zero': 9990, 'blair': 1079, 'witch': 9856, 'andre': 483, 'calvin': 1391, 'entitled': 3088, 'affected': 306, 'tapes': 8846, 'deposit': 2477, 'cameras': 1400, 'quote': 7140, 'getaway': 3810, 'framed': 3640, 'impostor': 4556, 'gas': 3757, 'carnage': 1470, 'appearing': 582, 'cost': 2094, 'photo': 6678, 'heroes': 4252, 'unravel': 9406, 'bosses': 1179, 'swinging': 8787, 'compared': 1895, 'prepared': 6904, 'abound': 171, 'month': 5908, 'im': 4514, 'submarine': 8648, 'rammed': 7178, 'wwii': 9945, 'handle': 4104, 'violated': 9576, 'thats': 8945, 'useful': 9461, 'scary': 7792, 'harsh': 4149, 'occurs': 6290, 'banned': 846, 'censors': 1546, 'threat': 9002, 'iq': 4806, 'stroker': 8600, 'ace': 213, 'capital': 1433, 'feat': 3384, 'loves': 5388, 'contract': 2026, 'crooked': 2199, 'clyde': 1793, 'ned': 6097, 'beatty': 921, 'requires': 7433, 'humiliating': 4425, 'chain': 1562, 'food': 3576, 'dressing': 2819, 'dim': 2596, 'witted': 9866, 'pal': 6500, 'loni': 5353, 'anderson': 482, 'bimbo': 1053, 'smaller': 8241, 'hal': 4080, 'formerly': 3611, 'relied': 7356, 'stunts': 8632, 'hooper': 4355, 'pity': 6726, 'grind': 4006, 'unremarkable': 9411, 'stinker': 8539, 'considerable': 1986, 'cold': 1813, 'smuggling': 8256, 'tricked': 9223, 'exaggerated': 3179, 'memory': 5720, 'elm': 2991, 'exists': 3216, 'differently': 2581, 'bush': 1347, 'passed': 6559, 'learn': 5177, 'realm': 7252, 'beside': 1010, 'springwood': 8429, 'performed': 6632, 'goo': 3918, 'masterpiece': 5604, 'underrated': 9343, 'misunderstood': 5856, 'tastes': 8858, 'tool': 9097, 'blew': 1098, 'niche': 6144, 'alleged': 396, 'loaded': 5319, 'bear': 910, 'author': 766, 'nazi': 6085, 'irish': 4812, 'personally': 6650, 'vital': 9599, 'extremes': 3285, 'reverse': 7499, 'gear': 3767, 'headed': 4180, 'erotic': 3109, 'mistakes': 5851, 'starters': 8478, 'hobgoblins': 4318, 'closely': 1773, 'bargain': 859, 'basement': 874, 'embarrassing': 3000, 'inappropriate': 4573, 'fx': 3723, 'meddling': 5678, 'track': 9142, 'scripts': 7846, 'rick': 7530, 'sloane': 8231, 'separation': 7935, 'church': 1696, 'underwear': 9354, 'mike': 5788, 'robots': 7597, 'mst3k': 5985, 'considering': 1989, 'wire': 9847, 'expensive': 3228, 'date': 2327, 'floors': 3543, 'lynchian': 5443, 'trapped': 9183, 'autistic': 769, 'medical': 5680, 'elevator': 2984, 'accompanied': 203, 'guard': 4032, 'businessman': 1349, 'tramp': 9164, 'collective': 1821, 'complex': 1914, 'pete': 6658, 'mainly': 5484, 'notable': 6207, 'inclusion': 4588, 'lordi': 5363, '2006': 106, 'monstrous': 5904, 'phrase': 6686, 'quiet': 7131, 'convention': 2043, 'handful': 4102, 'ripe': 7554, 'clichés': 1755, 'alongside': 413, 'interestingly': 4750, 'ominous': 6348, 'inevitable': 4632, 'doom': 2754, 'aware': 789, 'journey': 4935, 'shiny': 8050, 'bubble': 1293, 'confront': 1957, 'readily': 7234, 'concern': 1936, 'reasons': 7258, 'hoped': 4360, 'clichéd': 1754, 'recycled': 7287, 'outs': 6438, 'protect': 7031, 'accompanying': 204, 'traditional': 9150, 'nigh': 6154, 'clip': 1764, 'introduction': 4780, 'torment': 9106, 'band': 839, 'shining': 8049, 'dawn': 2336, 'cannibalism': 1420, 'irrational': 4817, 'explained': 3240, 'unfair': 9364, 'significantly': 8126, 'demented': 2435, 'infuriating': 4652, 'underdog': 9339, 'productions': 6981, 'romero': 7630, 'hollow': 4330, 'occurred': 6286, 'emotionally': 3015, 'standout': 8460, 'fades': 3307, 'slightest': 8223, 'arty': 654, 'pursue': 7097, 'mclaglen': 5653, 'tour': 9128, 'dublin': 2853, 'evoked': 3170, 'techniques': 8881, 'noirs': 6176, 'detail': 2528, 'frankie': 3653, 'ford': 3593, 'praying': 6874, 'gaelic': 3728, 'steiner': 8509, '1939': 34, '1935': 32, 'miserable': 5833, 'committed': 1880, 'knife': 5054, 'calm': 1388, 'smiling': 8251, 'throat': 9014, 'agent': 331, 'bend': 992, 'continuity': 2023, 'eager': 2897, 'groom': 4010, 'bride': 1245, 'bathroom': 891, 'entering': 3074, 'reception': 7269, 'cecil': 1532, 'demille': 2436, 'epic': 3094, 'finest': 3475, 'hysterical': 4464, 'amoral': 455, 'calamity': 1380, 'occasional': 6280, 'pastiche': 6567, 'lore': 5364, 'jesse': 4896, 'abraham': 174, 'subtlety': 8657, 'masses': 5596, 'frontal': 3689, 'industrial': 4628, 'washington': 9695, 'composed': 1918, 'autobiography': 771, 'adopted': 276, 'subsequent': 8651, 'westerns': 9764, 'whereby': 9779, 'countless': 2108, 'thousand': 8999, 'skies': 8186, 'varied': 9495, 'hayes': 4174, 'crowd': 2206, 'thhe': 8974, 'mutant': 6023, 'jonathan': 4930, 'entertain': 3077, 'birth': 1062, 'prepare': 6903, 'hint': 4291, 'scientists': 7814, 'briefly': 1251, 'rejects': 7336, 'labor': 5090, 'idiotic': 4488, 'mutants': 6024, 'marines': 5552, 'aliens': 389, 'exact': 3177, 'opposite': 6376, 'hills': 4287, 'attachment': 724, 'brief': 1250, 'inferior': 4640, 'cake': 1379, 'sloth': 8233, 'helps': 4238, 'ruth': 7701, 'ice': 4468, 'cream': 2151, 'visceral': 9587, 'toned': 9090, 'stood': 8548, 'strike': 8589, 'crisis': 2186, 'fighter': 3441, 'alas': 368, 'lowest': 5395, 'scores': 7819, 'dreadful': 2808, 'uninspired': 9377, 'bother': 1182, 'cash': 1497, 'lt': 5400, 'buddy': 1299, 'screw': 7839, 'treated': 9200, 'distinctive': 2682, 'understood': 9351, 'incomprehensible': 4595, 'cute': 2261, 'tons': 9093, 'occur': 6285, 'losing': 5371, 'magic': 5474, 'joseph': 4933, 'spencer': 8381, 'swear': 8776, 'monastery': 5889, 'federal': 3391, 'falling': 3326, 'flat': 3516, 'spite': 8399, 'restaurant': 7468, 'card': 1447, 'cues': 2230, 'whacked': 9766, 'dragged': 2790, 'hum': 4417, 'print': 6954, 'sent': 7924, 'overcoming': 6451, 'christy': 1690, 'leg': 5191, 'taught': 8860, 'expertly': 3237, 'retelling': 7481, 'sheridan': 8038, 'lewis': 5234, 'resort': 7453, 'melodrama': 5704, 'easiest': 2912, 'growth': 4025, 'improvement': 4566, 'stages': 8445, '17': 14, 'language': 5124, 'capability': 1428, 'intellectually': 4726, 'learned': 5178, 'latter': 5143, 'co': 1794, 'sympathize': 8801, 'commendable': 1869, 'physically': 6688, 'capture': 1441, 'evolves': 3175, 'highest': 4274, 'dinner': 2605, 'learns': 5180, 'marry': 5572, 'efforts': 2954, 'brenda': 1241, 'screamed': 7829, 'heartfelt': 4199, 'earns': 2906, 'minimal': 5811, 'speak': 8362, 'impact': 4543, 'visit': 9592, 'orson': 6412, 'welles': 9749, 'cotton': 2100, 'ignorant': 4495, 'drunk': 2846, 'youth': 9981, 'cary': 1493, 'grant': 3970, 'attraction': 743, 'tarantino': 8849, 'spike': 8390, 'offense': 6310, 'august': 754, '21': 111, 'hustle': 4452, 'flow': 3548, 'props': 7024, 'website': 9733, 'boo': 1157, 'regular': 7327, 'spoil': 8405, 'wooden': 9887, 'misleading': 5839, 'lesbian': 5213, 'vampires': 9487, 'dripping': 2825, 'italian': 4840, 'vampire': 9486, '1975': 69, 'trailer': 9157, 'buys': 1364, 'synopsis': 8805, 'attracted': 742, 'credited': 2169, 'nell': 6115, 'absence': 177, 'frustrating': 3695, 'hears': 4194, 'underneath': 9342, 'hair': 4076, 'costume': 2097, 'distinguish': 2684, 'atmospheric': 720, 'external': 3278, 'castle': 1503, 'purports': 7093, 'ireland': 4810, 'unintentionally': 9379, 'romp': 7631, 'romeo': 7629, 'juliet': 4958, 'israeli': 4835, 'palestinian': 6504, 'beverly': 1027, 'torn': 9109, 'fluff': 3551, 'pointed': 6781, 'invite': 4799, 'poster': 6848, 'rave': 7217, 'occupation': 6283, 'absurdity': 185, 'fisted': 3497, 'signals': 8121, 'insubstantial': 4714, 'lovers': 5387, 'presentation': 6909, 'gays': 3765, 'camp': 1402, 'awkwardly': 797, 'rushed': 7694, 'understandable': 9345, 'constraints': 2000, 'edited': 2937, 'soldier': 8287, 'crack': 2133, 'lulu': 5421, 'absurdly': 186, 'fluffy': 3552, 'helpful': 4235, 'downright': 2777, 'bone': 1153, 'numbing': 6238, 'crushing': 2222, 'necessity': 6095, 'cases': 1496, 'severe': 7972, 'ashraf': 659, 'tel': 8895, 'aviv': 778, 'papers': 6517, 'whenever': 9776, 'lucy': 5412, 'backdrop': 810, 'resolution': 7450, 'motivation': 5959, 'forbidden': 3588, 'handled': 4105, 'skill': 8187, 'salaam': 7728, 'gloriously': 3876, 'ed': 2926, 'oedipal': 6300, 'incompetence': 4592, 'crass': 2146, 'irreversible': 4821, 'kubrick': 5082, 'opposed': 6374, 'juvenile': 4976, 'danny': 2307, 'partly': 6548, 'lesley': 5215, 'mum': 5997, 'kitchen': 5049, 'cook': 2063, 'clay': 1741, 'harrowing': 4147, 'mutilated': 6026, 'adolescent': 274, 'pornographic': 6820, 'psychology': 7061, 'iraq': 4809, 'reports': 7419, 'prone': 7014, 'acts': 237, 'popping': 6812, 'derivative': 2488, 'prequel': 6906, 'digest': 2587, 'sabrina': 7708, 'harvey': 4152, 'kissing': 5048, 'feet': 3398, 'shes': 8043, 'control': 2034, 'genie': 3785, 'shaq': 8015, 'whats': 9770, 'belongs': 985, 'ought': 6420, 'excellence': 3184, 'vague': 9476, '20th': 110, 'amusement': 465, 'godard': 3892, 'fascination': 3358, 'backs': 814, 'heads': 4184, 'truffaut': 9260, 'maintains': 5489, 'haha': 4071, 'bet': 1014, 'vein': 9510, 'literature': 5303, 'ramblings': 7176, 'guide': 4042, 'lyrics': 5444, 'profoundly': 6992, 'allusions': 406, 'meaningful': 5664, 'nowhere': 6230, 'aids': 346, 'infected': 4639, 'masters': 5606, 'kurosawa': 5085, 'quentin': 7124, 'interview': 4765, 'creator': 2161, 'referred': 7305, 'affect': 305, 'myrtle': 6033, 'gordon': 3930, 'scenario': 7793, 'touching': 9124, 'watches': 9704, 'drove': 2837, 'stunned': 8629, 'thereof': 8969, 'rowlands': 7665, 'alcohol': 374, 'territory': 8923, 'costar': 2095, 'gazzara': 3766, 'unsatisfied': 9414, 'aging': 335, 'playwright': 6756, 'demons': 2442, 'sara': 7756, 'attacking': 727, 'strangers': 8570, 'duller': 2865, 'profession': 6985, 'consequently': 1984, 'laura': 5153, 'posed': 6833, 'thrills': 9013, 'wax': 9713, 'affairs': 304, 'slap': 8201, 'domestic': 2737, 'smashed': 8247, 'startling': 8481, 'blur': 1122, 'wonderfully': 9879, 'frank': 3650, 'rises': 7560, 'mediocrity': 5685, 'engaging': 3050, 'pierce': 6704, 'brosnan': 1278, 'reliable': 7355, 'greg': 3999, 'kinnear': 5043, 'nicholson': 6146, 'gusto': 4054, 'unexpected': 9361, 'guessing': 4038, 'editing': 2939, 'oc': 6278, 'centers': 1550, 'teenagers': 8892, 'shore': 8075, 'staff': 8442, 'california': 1383, 'hawaii': 4169, 'weakest': 9720, 'chuckles': 1694, 'ego': 2957, 'raise': 7167, 'heights': 4216, 'wreck': 9924, 'backwards': 816, 'waters': 9709, 'celebrity': 1539, 'teenager': 8891, 'photograph': 6679, 'accepts': 198, 'loses': 5370, 'christina': 1686, 'patty': 6586, 'hearst': 4195, 'walken': 9647, 'transformed': 9171, 'connery': 1973, 'shy': 8104, 'pretend': 6922, 'democratic': 2439, 'forgot': 3606, 'bitter': 1070, 'criticism': 2192, 'capitalism': 1434, 'nuclear': 6232, 'powered': 6862, 'below': 987, 'thick': 8975, 'attacked': 726, 'electric': 2974, 'communicate': 1885, 'dear': 2358, 'bugs': 1307, 'containing': 2006, 'pointing': 6782, 'fingers': 3477, 'laughter': 5150, 'bo': 1123, 'derek': 2486, 'revolutionary': 7510, 'worthwhile': 9914, 'widowed': 9812, 'experiencing': 3232, 'transformation': 9170, 'fitting': 3500, 'tony': 9094, 'pleasant': 6757, 'bruce': 1284, 'riveting': 7573, 'scripted': 7844, 'rapist': 7201, 'russo': 7699, 'inform': 4646, 'realizes': 7249, 'wallet': 9653, 'pat': 6568, 'terry': 8927, 'diana': 2563, 'degrades': 2410, 'rape': 7197, 'opponents': 6371, 'displays': 2674, 'nemesis': 6117, 'creditable': 2168, 'creep': 2172, 'intimate': 4768, 'encourage': 3032, 'maintained': 5487, 'reveals': 7496, 'michelle': 5776, 'ryan': 7705, 'heck': 4212, 'forth': 3616, 'parallels': 6525, 'popped': 6811, 'excited': 3197, '30': 121, 'min': 5804, 'wendy': 9753, 'wu': 9940, 'ruined': 7678, 'possesses': 6840, 'defeat': 2395, 'forever': 3598, 'blah': 1078, 'paxton': 6592, 'mechanic': 5674, 'sons': 8318, 'participating': 6543, 'ax': 798, 'beings': 967, 'selected': 7897, 'matthew': 5623, 'mcconaughey': 5642, 'skeptical': 8183, 'fbi': 3380, 'boothe': 1166, 'features': 3387, 'unsettling': 9418, 'straightforward': 8564, 'minimum': 5812, 'gimmicks': 3838, 'jeremy': 4889, 'pan': 6510, 'stomach': 8545, 'atypical': 747, 'embarrassingly': 3001, '13': 9, 'craig': 2137, 'pitt': 6725, 'montana': 5906, 'breathtaking': 1239, 'format': 3609, 'jennifer': 4887, 'connelly': 1972, 'heaven': 4208, 'phenomenal': 6666, 'terrifically': 8921, 'luckily': 5410, 'linda': 5278, 'possessed': 6839, 'hunky': 4437, 'voodoo': 9620, 'lips': 5291, 'upside': 9451, 'overused': 6461, 'genuinely': 3795, 'vacation': 9474, 'architect': 604, 'dresses': 2818, 'engrossing': 3054, 'intro': 4775, 'supremely': 8734, 'morbid': 5930, 'staring': 8470, 'hanging': 4112, 'chimney': 1656, 'popularity': 6816, 'debuted': 2367, 'manhattan': 5513, 'nbc': 6086, 'insult': 4715, 'designer': 2506, 'bedroom': 935, 'costs': 2096, 'ugly': 9312, 'neighborhood': 6110, 'le': 5167, 'tenant': 8904, 'polanski': 6790, 'trelkovsky': 9208, 'timid': 9051, 'clerk': 1748, 'advertisement': 294, 'compelled': 1901, 'stella': 8510, 'isabelle': 4828, 'paranoia': 6527, 'suspicious': 8768, 'provoke': 7048, 'repeating': 7406, 'tooth': 9099, 'walls': 9654, 'covered': 2127, 'neglected': 6106, 'flo': 3538, 'overcome': 6449, 'elizabeth': 2988, 'amitabh': 450, 'annoys': 526, 'began': 946, 'attached': 723, 'suppose': 8729, 'listen': 5296, 'unanswered': 9322, 'gilmore': 3836, 'glass': 3860, 'punk': 7082, 'opened': 6359, 'clint': 1763, 'eastwood': 2916, 'admire': 266, 'deeper': 2393, 'lust': 5436, 'ring': 7548, 'stilted': 8536, 'seeking': 7886, 'titled': 9065, 'wendigo': 9752, 'menacing': 5724, 'correctly': 2090, 'fleeing': 3526, 'flash': 3510, 'rear': 7253, 'tree': 9205, 'behavior': 960, 'bones': 1154, 'supernatural': 8721, 'unpredictable': 9404, 'representation': 7421, 'wound': 9918, 'heavy': 4210, 'mimic': 5803, 'stance': 8455, 'perform': 6629, 'thus': 9028, 'flashes': 3513, 'awfully': 794, 'encounter': 3029, 'bulb': 1313, 'assignment': 684, 'earn': 2903, 'recognition': 7271, 'loser': 5368, 'punishment': 7081, 'debacle': 2362, '16': 13, 'ryu': 7706, 'aunt': 757, 'arrival': 634, 'sugar': 8683, 'hers': 4258, '1920s': 24, 'thousands': 9000, 'farmers': 3352, 'farmer': 3351, 'illiterate': 4505, 'midst': 5784, 'property': 7021, 'answered': 531, 'connecting': 1969, 'proved': 7038, 'comfortable': 1857, 'henry': 4243, 'winkler': 9839, '1950s': 45, 'jerk': 4890, 'employment': 3024, 'flamboyant': 3508, 'turning': 9289, 'goof': 3926, 'sounded': 8334, 'alter': 419, 'staged': 8444, 'carl': 1464, 'polly': 6800, 'alice': 384, 'beloved': 986, 'hams': 4099, 'rendering': 7393, 'summary': 8700, 'carrey': 1478, 'aniston': 511, 'nolan': 6179, 'cookie': 2064, 'pas': 6554, 'fiasco': 3425, 'result': 7473, 'neurotic': 6129, 'morgan': 5934, 'pulls': 7074, 'moon': 5915, 'closer': 1774, 'soup': 8339, 'lifts': 5253, 'via': 9531, 'mail': 5481, 'sarcasm': 7758, 'undeveloped': 9356, 'false': 3329, 'sophistication': 8325, 'lets': 5226, 'nineties': 6161, 'dahl': 2277, 'thrillers': 9011, 'seduction': 7879, 'roadkill': 7577, 'focuses': 3559, 'travelling': 9192, 'finding': 3469, 'county': 2113, 'mistaken': 5850, 'lyle': 5441, 'fabulous': 3292, 'nicholas': 6145, 'boyle': 1206, 'walsh': 9655, 'dennis': 2452, 'commands': 1867, 'regret': 7326, 'carruthers': 1483, 'yep': 9964, 'deemed': 2391, 'easier': 2911, 'depictions': 2474, 'shambles': 8004, 'completed': 1912, 'fictional': 3427, 'brand': 1218, '1980s': 75, 'realised': 7241, 'isolated': 4832, 'mansion': 5529, 'molly': 5881, '1990s': 86, 'accents': 192, 'strangely': 8568, 'picks': 6695, 'quasi': 7121, 'soderbergh': 8281, 'che': 1613, 'scenarios': 7794, 'guevara': 4041, 'cuba': 2227, 'congo': 1965, 'passing': 6561, 'mentioned': 5731, 'jungle': 4966, 'revolution': 7509, 'stature': 8494, 'communist': 1887, 'involvement': 4803, 'castro': 1504, 'sadder': 7713, 'wiser': 9850, 'morale': 5924, 'flaw': 3518, 'executed': 3206, 'justified': 4973, 'primal': 6944, 'stabbing': 8440, 'damon': 2289, 'package': 6479, 'concerning': 1938, 'avenger': 775, 'meyer': 5771, 'kitten': 5050, 'raven': 7218, 'atrocity': 722, 'lamest': 5109, 'superhero': 8715, 'deals': 2354, 'superpowers': 8722, 'cure': 2242, 'cancer': 1415, 'battling': 899, 'trio': 9233, 'bikini': 1043, 'dancers': 2294, 'pardon': 6528, 'expression': 3271, 'chest': 1634, 'thomas': 8990, 'uh': 9313, 'embarrassment': 3002, 'canonical': 1423, 'cohen': 1805, 'marshal': 5575, 'gerry': 3805, 'nut': 6243, 'fallen': 3325, 'cab': 1369, 'jessica': 4897, 'simpson': 8147, 'alba': 369, 'hepburn': 4244, 'annie': 517, 'sooner': 8321, 'per': 6621, 'intrigued': 4773, 'caine': 1378, 'stops': 8553, 'unbelievably': 9327, 'grows': 4024, 'homosexual': 4345, 'roll': 7618, 'drag': 2789, 'screwed': 7841, 'aiming': 350, 'practically': 6868, 'shaking': 7999, 'internal': 4756, 'curious': 2246, 'montage': 5905, 'filmmaking': 3458, 'condescending': 1945, 'fell': 3400, 'intentional': 4738, 'hallmark': 4087, 'warmed': 9675, 'ain': 352, 'vain': 9478, 'sustain': 8769, 'unexpectedly': 9362, 'yawn': 9957, 'hong': 4349, 'bowl': 1197, 'chop': 1669, 'panic': 6513, 'followed': 3567, 'underworld': 9355, 'orleans': 6410, 'crowded': 2207, 'claustrophobic': 1739, 'kazan': 4993, 'gritty': 4009, 'widmark': 9810, 'finer': 3474, 'prevalent': 6929, 'detailed': 2529, 'fuller': 3704, 'confusion': 1964, 'immorality': 4540, 'modest': 5875, 'lang': 5122, '1953': 48, 'destroyed': 2522, 'surrounding': 8750, 'increased': 4603, 'vengeance': 9514, 'reed': 7298, 'satisfied': 7767, 'restored': 7471, 'disease': 2653, '1986': 81, 'neat': 6091, 'analogy': 472, 'blackie': 1074, 'flee': 3525, 'aboard': 168, 'rats': 7214, 'menace': 5723, 'cronies': 2198, 'plague': 6734, 'steal': 8501, 'assumption': 697, 'anonymous': 528, 'immigrant': 4539, 'protagonist': 7029, 'walks': 9650, 'limits': 5275, 'morality': 5927, 'dimension': 2598, 'infamous': 4637, 'naming': 6053, 'suspected': 8761, 'press': 6915, 'grounds': 4018, 'sentiments': 7931, 'accepting': 197, 'civil': 1716, 'presumed': 6921, 'industry': 4629, 'threats': 9005, 'response': 7464, 'issues': 4837, 'stalks': 8451, 'doomed': 2755, 'holding': 4324, 'gesture': 3807, 'corruption': 2092, 'dock': 2716, 'pool': 6805, 'palance': 6502, 'distract': 2687, 'astonishingly': 705, 'located': 5326, 'nz': 6250, 'campbell': 1404, 'balls': 834, 'steel': 8506, 'deja': 2413, 'beers': 940, 'festival': 3414, 'izzard': 4848, 'robin': 7592, 'williams': 9823, 'routine': 7662, 'carried': 1480, 'priceless': 6940, 'jaws': 4875, 'months': 5909, 'tape': 8844, 'myths': 6042, 'stabbed': 8439, 'screams': 7831, '35': 127, 'ww': 9941, '1960s': 55, 'fondness': 3574, 'scripting': 7845, 'hat': 4156, 'railroad': 7161, 'annoyed': 523, 'knight': 5055, 'angered': 496, 'talents': 8828, 'jeff': 4884, 'daniels': 2305, 'daryl': 2324, 'hannah': 4117, 'clue': 1786, 'hurley': 4445, 'rabbit': 7143, 'fond': 3572, 'tendency': 8906, 'wildly': 9820, 'bethany': 1017, 'cox': 2132, 'laurence': 5155, 'olivier': 6340, 'paired': 6498, 'respective': 7459, 'crisp': 2187, 'rewrite': 7518, 'updated': 9444, 'sliding': 8221, 'sleeping': 8212, 'manipulation': 5518, 'bothered': 1183, 'instances': 4700, 'opportunities': 6372, 'garish': 3753, 'bomb': 1146, 'pros': 7025, 'faith': 3319, 'reasonably': 7256, 'swearing': 8777, 'mild': 5789, 'pg': 6662, 'kareena': 4981, 'kapoor': 4980, 'tashan': 8854, 'mega': 5695, 'weekend': 9738, 'vijay': 9563, 'krishna': 5077, 'directions': 2615, 'saif': 7723, 'ali': 382, 'khan': 5015, 'cliff': 1757, 'anil': 505, 'ambitious': 443, 'punish': 7080, 'henchman': 4241, 'akshay': 364, 'recovers': 7284, 'indulgent': 4627, 'coherent': 1806, 'bullet': 1317, 'shaolin': 8010, 'monks': 5897, 'fairness': 3317, 'paced': 6475, 'sentimental': 7929, 'cared': 1451, 'bothering': 1184, 'stew': 8527, 'glossy': 3879, 'blend': 1093, 'complained': 1907, 'grating': 3978, 'foolishly': 3580, 'delivery': 2429, 'irresistible': 4819, 'cringe': 2183, 'shekhar': 8031, 'patience': 6576, '1997': 93, 'duchovny': 2854, 'eternal': 3137, 'collector': 1822, 'interrupted': 4764, 'corner': 2081, 'saves': 7776, 'moralistic': 5926, 'text': 8935, 'ordeal': 6392, 'segments': 7896, 'sitting': 8173, 'shorts': 8081, 'janice': 4867, 'siblings': 8105, 'parent': 6529, 'affluent': 314, 'reject': 7333, 'hippie': 4295, 'trance': 9165, 'commenting': 1874, 'groups': 4020, 'adversity': 292, 'dolph': 2735, 'lundgren': 5428, 'boxer': 1199, 'searches': 7857, 'boston': 1180, 'dreary': 2814, 'brett': 1243, 'exploration': 3255, 'needlessly': 6101, 'newcomer': 6133, 'macy': 5457, 'quietly': 7132, 'patient': 6577, 'dilemma': 2593, 'notch': 6209, 'address': 256, 'marlon': 5566, 'expose': 3263, 'forty': 3620, 'principal': 6951, 'vanessa': 9490, 'pursued': 7098, 'addition': 253, 'diamond': 2561, 'sickening': 8107, 'continuous': 2024, 'superman': 8718, 'peaceful': 6601, 'cable': 1373, 'pressed': 6916, 'fortune': 3619, 'designers': 2507, 'homework': 4342, 'alvin': 429, 'notion': 6218, 'patricia': 6579, 'clarkson': 1728, 'erik': 3107, 'malcolm': 5499, 'subjected': 8646, 'dvds': 2885, 'bearing': 913, 'discrimination': 2646, 'vaguely': 9477, 'map': 5533, 'slight': 8222, '21st': 112, 'boards': 1127, 'furthermore': 3718, 'denise': 2451, 'richards': 7526, 'billing': 1050, 'messed': 5757, 'breasts': 1235, 'porno': 6819, '45': 133, 'resolving': 7452, 'boobs': 1158, 'shower': 8095, 'foreign': 3596, 'farce': 3348, 'luck': 5409, 'continues': 2021, 'china': 1658, 'dean': 2356, 'resist': 7449, 'oil': 6326, 'houston': 4396, 'redeem': 7289, 'texas': 8934, 'yelling': 9962, 'covers': 2129, 'shine': 8047, 'baker': 828, 'ton': 9088, 'beery': 941, 'tommy': 9086, 'jones': 4931, 'oliver': 6338, 'tall': 8837, 'trilogy': 9230, 'flicks': 3534, 'timeless': 9048, 'clark': 1726, 'gems': 3771, 'lohan': 5338, 'beth': 1016, 'observation': 6263, 'meals': 5659, 'tho': 8989, 'turd': 9281, 'damage': 2283, 'merit': 5744, 'repeat': 7403, 'attacks': 728, 'nonsensical': 6188, 'peek': 6609, 'semblance': 7905, 'mitchum': 5858, 'pedestrian': 6608, 'excruciatingly': 3202, 'stupidly': 8637, 'filmmaker': 3456, 'finished': 3479, 'nah': 6043, 'transfer': 9168, 'sunshine': 8710, 'nelson': 6116, 'turkey': 9283, 'geek': 3769, 'scarecrow': 7786, 'circuit': 1709, 'liners': 5283, 'narrow': 6062, 'mock': 5867, 'embrace': 3004, 'bela': 969, 'lugosi': 5416, 'license': 5242, 'brides': 1246, 'assistants': 688, 'morgue': 5936, 'bodies': 1133, 'sticks': 8531, 'draws': 2806, 'helping': 4236, 'hag': 4070, 'dwarf': 2886, 'downstairs': 2779, 'scared': 7788, 'gruff': 4028, 'orchid': 6390, 'mop': 5921, 'stink': 8538, 'guarded': 4033, 'churches': 1697, 'newspaper': 6138, 'headlines': 4182, 'grab': 3946, 'prostitute': 7027, 'weirdo': 9742, 'clunker': 1790, 'sinister': 8160, 'muddled': 5990, 'exposition': 3266, 'sally': 7733, 'field': 3430, 'lightning': 5260, 'aaron': 159, 'leonard': 5211, 'herrings': 4257, 'offerings': 6315, 'conrad': 1978, 'professionals': 6987, 'albeit': 370, 'misty': 5855, 'truthfully': 9269, 'closed': 1772, 'nail': 6044, 'welcome': 9745, 'collinwood': 1825, 'robbed': 7583, 'clooney': 1770, 'con': 1925, 'vocabulary': 9606, 'unlikable': 9392, 'celebrated': 1536, 'obstacles': 6274, 'yell': 9961, 'insipid': 4684, 'insultingly': 4718, 'remembers': 7382, 'ingredients': 4655, 'topless': 9104, 'kung': 5084, 'fu': 3698, 'kicking': 5019, 'cameron': 1401, 'mitchell': 5857, 'sword': 8791, 'wielding': 9813, 'feminist': 3408, 'shepard': 8036, 'hooker': 4354, 'load': 5318, 'artists': 650, 'heading': 4181, 'tops': 9105, 'bottoms': 1188, 'frequently': 3670, 'incorrect': 4601, 'receive': 7263, 'extravagant': 3282, 'manuscript': 5531, 'swedish': 8778, 'shirt': 8055, 'descent': 2491, 'disappears': 2627, 'sucked': 8671, 'forwarding': 3624, 'importantly': 4552, 'clothes': 1780, 'burgess': 1329, 'meredith': 5741, 'dick': 2566, 'lawyers': 5162, 'logan': 5334, 'crossed': 2203, 'shakespeare': 7997, 'unwatchable': 9435, 'expecting': 3225, 'forgiven': 3604, '1989': 84, '1981': 76, 'denver': 2456, 'esp': 3119, 'st': 8438, 'nick': 6147, 'pokemon': 6787, 'celebi': 1535, 'cliche': 1752, 'gi': 3819, 'settings': 7963, 'anime': 510, '2002': 102, '30s': 124, 'farrell': 3353, 'racism': 7149, 'approaches': 592, 'abc': 163, 'stale': 8448, 'dependent': 2467, 'mesmerized': 5752, 'foolish': 3579, 'percent': 6623, 'organization': 6398, 'raid': 7159, 'foil': 3562, 'opener': 6360, 'plane': 6738, 'university': 9389, 'saint': 7725, 'titanic': 9063, 'voyage': 9625, 'sunk': 8707, 'hitting': 4312, 'iceberg': 4469, 'april': 597, '15': 12, '1912': 20, 'perished': 6642, 'icy': 4472, 'leonardo': 5212, 'dicaprio': 2565, 'kate': 4987, 'winslet': 9843, 'zane': 9988, 'bates': 888, 'frances': 3645, 'fisher': 3493, 'hyde': 4456, 'magnificent': 5478, 'survive': 8753, 'heartbreaking': 4197, 'anyhow': 552, 'ole': 6335, 'machines': 5452, 'invest': 4790, 'robot': 7594, 'duel': 2860, 'method': 5765, 'cleaner': 1743, 'wearing': 9728, 'masks': 5591, 'budgets': 1302, 'tcm': 8865, 'myrna': 6032, 'loy': 5396, '1930': 28, 'mary': 5586, 'hilda': 4284, 'archer': 603, 'ralph': 7173, 'eugene': 3141, 'palette': 6505, 'heath': 4207, 'loc': 5321, 'repetitive': 7409, 'border': 1169, 'placement': 6731, 'mixture': 5862, 'aimed': 349, 'sadness': 7716, 'earthquake': 2909, 'convent': 2042, 'nuns': 6241, 'announces': 521, 'youngest': 9977, 'disguise': 2657, 'southern': 8343, 'mom': 5882, 'talks': 8836, 'overblown': 6448, 'solved': 8301, 'implausible': 4546, 'remotely': 7389, 'artificial': 646, 'returning': 7488, 'wrap': 9921, 'grandma': 3966, 'laughed': 5147, 'clutter': 1792, 'bonnie': 1155, 'respected': 7458, '14': 11, 'november': 6227, '1959': 53, 'truman': 9262, 'capote': 1435, 'international': 4757, '1967': 60, 'blake': 1081, 'rests': 7472, 'deservedly': 2501, 'perry': 6644, 'traps': 9184, 'distaste': 2679, 'hickock': 4266, 'resulted': 7474, 'conviction': 2055, 'deeply': 2394, 'brooks': 1276, 'preachy': 6878, 'amazon': 438, 'trek': 9207, 'explode': 3247, 'freaky': 3660, 'librarian': 5240, 'dude': 2857, 'kirk': 5044, 'transported': 9180, 'mccoy': 5644, 'spock': 8404, 'freeze': 3667, 'frozen': 3692, 'witchcraft': 9857, 'amok': 452, 'salem': 7730, 'trials': 9216, 'isolation': 4833, 'anastasia': 476, 'restless': 7469, 'cuts': 2264, 'loads': 5320, 'harlin': 4137, 'medal': 5677, 'suited': 8694, 'toward': 9132, 'stallone': 8452, 'lithgow': 5304, 'rooker': 7636, 'cue': 2229, 'screenwriters': 7838, 'destroys': 2524, 'lie': 5243, 'heist': 4219, 'bells': 981, 'strict': 8587, 'india': 4612, 'matters': 5621, 'noble': 6171, 'similarly': 8137, 'noted': 6211, 'sidewalk': 8114, 'artist': 648, 'shrine': 8102, 'ashes': 658, 'prophetic': 7022, 'lessons': 5220, 'varying': 9499, 'om': 6344, 'puri': 7091, 'enduring': 3043, 'mate': 5613, 'perspectives': 6653, 'sensitivity': 7922, 'researched': 7440, '1988': 83, 'cultural': 2237, '1994': 90, 'globe': 3872, 'specific': 8370, 'dutifully': 2881, 'memorial': 5718, 'ties': 9038, 'hitler': 4310, 'master': 5599, 'carlyle': 1468, 'unemployed': 9359, 'disguised': 2658, 'portraying': 6829, 'ww2': 9942, 'mins': 5818, 'dreck': 2815, 'astaire': 703, 'premiere': 6898, '1936': 33, 'outing': 6432, 'fifth': 3437, 'sailor': 7724, 'bake': 826, 'entertainer': 3079, 'sherry': 8042, 'pairings': 6499, 'similarity': 8136, 'womanizing': 9873, 'bilge': 1045, 'irene': 4811, 'understandably': 9346, 'ozzie': 6472, 'decades': 2369, 'connie': 1974, 'lucille': 5407, 'doll': 2731, 'adorable': 277, 'allan': 395, 'dwight': 2887, 'francisco': 3648, 'glamour': 3857, 'berlin': 1006, 'dances': 2295, 'toe': 9072, 'tapping': 8847, 'beautifully': 924, 'arrangement': 631, 'energetic': 3046, 'tap': 8843, 'outfit': 6430, 'typically': 9308, 'trademark': 9148, '2005': 105, 'fleet': 3527, 'melody': 5707, 'themed': 8958, 'bullies': 1320, 'distraught': 2691, 'mario': 5553, 'pitiful': 6723, 'expects': 3226, 'giallo': 3820, 'unspeakable': 9420, 'secrets': 7873, 'facade': 3293, 'pitched': 6722, 'picnic': 6698, 'aimless': 351, 'unnoticed': 9400, 'anguished': 504, 'du': 2849, 'traveling': 9191, 'ordered': 6394, 'struck': 8605, 'speeches': 8376, 'senseless': 7916, 'americans': 446, 'compares': 1896, 'jacob': 4854, 'ladder': 5098, 'hadn': 4069, 'youthful': 9982, 'resorting': 7454, 'crossing': 2205, 'pans': 6514, 'framing': 3643, 'seedy': 7883, 'ratso': 7215, 'recall': 7261, 'witching': 9859, 'inherently': 4661, 'criticise': 2191, 'troma': 9249, 'pamela': 6509, 'flora': 3546, 'wilder': 9818, 'choppy': 1672, 'appalling': 571, 'sane': 7747, 'kidding': 5021, 'barbie': 853, 'flowing': 3549, 'leather': 5182, 'broke': 1268, 'dated': 2328, 'promoting': 7012, 'spoiled': 8406, 'previews': 6935, 'johnny': 4919, 'cannes': 1418, 'palm': 6506, 'nomination': 6182, 'leader': 5169, 'louis': 5379, 'koo': 5071, 'tung': 9279, 'lam': 5106, 'iii': 4501, 'mafia': 5470, 'stan': 8454, 'ollie': 6341, 'sweeps': 8779, 'noodle': 6189, 'lucien': 5404, 'chaos': 1585, 'graphically': 3973, 'butcher': 1356, 'traumatic': 9189, 'destruction': 2525, 'judicious': 4952, 'imaginable': 4518, 'denzel': 2459, 'creasy': 2152, 'cia': 1699, 'redemption': 7292, 'mexico': 5770, 'bodyguard': 1135, 'devoted': 2552, 'seeks': 7887, 'brian': 1244, 'helgeland': 4223, 'efficient': 2951, 'brutality': 1288, 'risk': 7562, 'identify': 4482, 'purposes': 7095, 'torturing': 9115, 'fanning': 3340, 'turmoil': 9285, 'mickey': 5777, 'rachel': 7147, 'stranger': 8569, 'douglas': 2771, 'davis': 2335, 'impresses': 4559, 'alternates': 423, 'loud': 5377, 'unknown': 9390, 'marcus': 5541, 'urge': 9454, 'stumbled': 8626, 'thumbs': 9025, 'bouncy': 1190, 'plight': 6764, 'melvyn': 5711, 'universal': 9387, 'snuff': 8270, 'purely': 7090, 'appealing': 576, 'slapping': 8202, 'sounding': 8335, 'responds': 7463, 'torments': 9108, 'tame': 8838, 'fetish': 3417, 'suspend': 8763, 'disbelief': 2636, 'boast': 1128, 'timed': 9047, 'motivate': 5958, 'programmers': 6994, 'scifi': 7815, 'survives': 8755, 'brash': 1221, 'choreographed': 1674, 'hk': 4313, 'introduce': 4776, 'workers': 9896, 'heated': 4206, 'debate': 2363, 'claim': 1719, 'videos': 9547, 'camcorder': 1394, 'scratch': 7824, 'surface': 8738, 'smash': 8246, 'fiorentino': 3481, 'edged': 2931, 'stalker': 8450, 'loyalty': 5399, 'betrayal': 1018, 'steamy': 8505, 'howell': 4399, 'goddess': 3893, 'wimpy': 9829, 'impulse': 4567, 'wars': 9689, 'upcoming': 9442, 'carrie': 1479, 'ann': 513, 'fleming': 3529, 'recognize': 7273, 'dario': 2313, 'necessarily': 6093, 'cheese': 1624, 'explanations': 3244, 'existence': 3213, 'references': 7304, 'forest': 3597, 'jon': 4929, 'carpenter': 1475, 'junk': 4968, 'setup': 7966, 'training': 9161, 'unrealistic': 9408, 'wedding': 9734, 'exercise': 3209, 'uniform': 9373, 'sneak': 8261, 'separated': 7934, 'tanks': 8841, 'engine': 3051, 'obsessed': 6270, 'routines': 7663, 'sloppy': 8232, 'brainless': 1215, 'deserted': 2498, 'fiancée': 3424, 'italians': 4841, 'jealous': 4878, 'alley': 399, 'freely': 3665, 'guards': 4035, 'timely': 9049, 'rocket': 7600, 'explosion': 3260, 'knocks': 5061, 'enraged': 3067, 'splitting': 8403, 'springs': 8427, 'alternate': 421, 'sold': 8286, 'freshman': 3672, 'paycheck': 6594, 'quaid': 7113, 'lisa': 5293, 'screened': 7833, 'anytime': 556, 'posters': 6849, 'hart': 4150, 'chopped': 1670, 'der': 2484, 'fit': 3498, 'upbeat': 9440, 'flimsy': 3537, 'merlin': 5748, 'epitome': 3097, 'bully': 1321, 'exploring': 3259, 'plotted': 6768, 'showcase': 8091, 'ferrell': 3412, 'emma': 3010, 'thompson': 8991, 'fist': 3496, 'rang': 7185, 'challenges': 1567, 'dustin': 2879, 'leap': 5175, 'tribute': 9221, 'offended': 6307, 'burst': 1339, 'vapid': 9493, 'maudlin': 5627, 'contact': 2003, 'doubly': 2767, 'holy': 4336, 'bewildered': 1029, 'crispin': 2188, 'glover': 3881, 'slide': 8220, 'directly': 2616, 'clad': 1718, 'valid': 9482, 'feed': 3393, 'gag': 3729, 'additionally': 255, 'quirky': 7137, 'outrageously': 6436, 'drastically': 2801, 'disappointment': 2631, 'depicted': 2471, 'momentum': 5885, 'culp': 2233, 'installments': 4698, 'sophisticated': 8324, 'agency': 329, 'blackmail': 1075, 'matched': 5611, 'mouse': 5968, 'slower': 8235, 'reasonable': 7255, 'chat': 1612, 'bafta': 823, 'graham': 3961, 'faint': 3313, '18': 16, 'warner': 9680, 'bros': 1277, 'exploited': 3253, 'glamorous': 3856, 'daily': 2279, 'robinson': 7593, 'consequences': 1983, 'boris': 1174, 'karloff': 4985, 'sol': 8285, 'dracula': 2787, 'appalled': 570, 'scorsese': 7821, 'doodle': 2751, 'bops': 1168, 'instantly': 4702, 'cup': 2241, 'handy': 4109, 'wargames': 9673, '86': 151, 'loggia': 5335, 'parker': 6533, 'missile': 5844, 'firing': 3486, 'rockets': 7601, 'concerns': 1939, 'orbit': 6387, 'degrees': 2412, 'burning': 1335, 'distant': 2678, 'bases': 875, 'destroying': 2523, 'march': 5538, '1961': 56, 'russians': 7698, 'log': 5333, 'heroic': 4253, 'phillip': 6670, 'pine': 6715, 'shatner': 8023, 'bus': 1344, 'driver': 2829, 'continually': 2017, 'lawrence': 5159, 'overlooked': 6456, 'info': 4645, 'dc': 2344, 'larry': 5131, 'kerr': 5011, '63': 140, 'discussions': 2652, 'stations': 8492, 'canada': 1409, 'jeep': 4883, 'knocked': 5060, 'drives': 2830, 'arm': 621, 'reach': 7225, 'announced': 518, 'guessed': 4037, 'blast': 1086, 'seconds': 7869, 'caused': 1524, 'sacrificed': 7710, 'smarmy': 8243, 'bauer': 900, 'sends': 7911, 'piano': 6690, '27': 117, 'blacks': 1076, 'revolting': 7508, 'shortly': 8080, 'eve': 3148, 'longoria': 5352, 'rudd': 7673, 'garrison': 3755, 'president': 6913, 'mole': 5879, 'inject': 4665, 'confrontation': 1958, 'basinger': 881, 'eva': 3146, 'nephew': 6119, 'salt': 7735, 'idiocy': 4485, 'filling': 3451, 'vienna': 9548, 'eternity': 3138, 'clock': 1767, 'optimism': 6380, 'pc': 6599, 'mel': 5698, 'pulse': 7076, 'vlad': 9605, 'kinds': 5038, 'domino': 2744, 'appeals': 577, 'boyer': 1204, 'trunk': 9264, 'arab': 599, 'lucile': 5406, 'tilly': 9043, 'rides': 7535, 'garbo': 3749, 'gotten': 3940, 'wears': 9729, 'disjointed': 2664, 'explored': 3257, 'puppets': 7085, 'anne': 516, 'peculiar': 6607, 'slug': 8237, 'darren': 2322, 'hints': 4293, 'whipped': 9792, 'hateful': 4159, '2000': 100, 'fidelity': 3428, 'plagues': 6735, 'attending': 736, 'walter': 9657, 'purse': 7096, 'secretly': 7872, 'olympic': 6342, 'conveniently': 2041, 'practical': 6867, 'parallel': 6524, 'irritates': 4824, 'endeavor': 3035, 'hopeful': 4361, 'humiliated': 4424, 'wins': 9842, 'raoul': 7195, 'yankee': 9953, 'dandy': 2297, 'roar': 7579, 'lightly': 5259, 'hale': 4081, '1942': 37, 'incomplete': 4594, 'alec': 375, 'baldwin': 831, 'defend': 2398, 'bashing': 876, 'trail': 9156, 'foul': 3627, 'mouthed': 5970, 'julian': 4956, 'tacky': 8812, 'remarks': 7378, 'bond': 1151, 'spies': 8389, 'fifteen': 3436, 'carefully': 1455, 'niro': 6165, 'keitel': 4999, 'pierre': 6705, 'melville': 5709, 'effortlessly': 2953, 'succeeds': 8663, 'blending': 1094, 'asylum': 712, 'participants': 6541, 'visiting': 9594, 'psychiatrist': 7055, 'agenda': 330, 'healing': 4186, 'townsend': 9137, 'judged': 4947, 'encounters': 3031, 'enhance': 3055, 'cram': 2138, 'devon': 2551, 'appearances': 580, 'jenna': 4886, 'sarah': 7757, 'assistance': 686, 'unveils': 9433, 'sidekick': 8111, 'pleasing': 6761, 'examine': 3181, 'forgive': 3603, 'trade': 9147, 'polished': 6793, 'grady': 3959, 'buildings': 1310, 'disastrous': 2635, 'angeles': 492, 'respectively': 7460, 'melinda': 5701, 'dillon': 2595, 'denial': 2448, 'oral': 6385, 'flag': 3505, 'persuades': 6654, 'motif': 5955, 'springsteen': 8428, 'unpleasant': 9402, 'instinct': 4705, 'marvelous': 5584, 'copies': 2071, 'jerry': 4892, 'goldsmith': 3911, 'smoking': 8254, 'realization': 7246, 'surgery': 8741, 'panahi': 6511, 'subjects': 8647, 'tad': 8813, 'celebration': 1537, 'broadcast': 1265, 'worried': 9907, 'fashioned': 3361, 'bbc': 902, 'dramas': 2798, 'sunday': 8706, 'eyre': 3290, 'rochester': 7598, 'rivers': 7572, 'gypsy': 4062, 'disagree': 2624, 'socks': 8280, 'shopping': 8073, '1958': 52, 'childress': 1649, 'peak': 6602, 'cracks': 2134, 'untimely': 9429, 'deaths': 2360, 'mccord': 5643, 'brooding': 1274, 'sheen': 8029, 'tense': 8910, 'rebellious': 7260, 'phillips': 6671, 'waitress': 9639, 'stuart': 8614, 'nolte': 6180, 'attendant': 735, 'buzz': 1365, 'sissy': 8166, 'downs': 2778, 'stern': 8523, 'climactic': 1758, 'busting': 1352, 'incident': 4579, 'thieves': 8977, 'brat': 1223, 'adopt': 275, 'amy': 468, 'chill': 1651, 'orphanage': 6411, 'throwing': 9020, 'depart': 2461, 'convict': 2053, 'culkin': 2231, 'merry': 5750, 'mayhem': 5636, 'documents': 2723, 'centuries': 1554, 'interference': 4753, 'dame': 2285, 'delight': 2419, 'assuming': 696, 'void': 9613, 'dallas': 2280, 'assed': 677, 'madsen': 5468, 'vs': 9626, 'godzilla': 3897, 'yeti': 9968, 'borrows': 1177, 'myth': 6041, 'bigfoot': 1038, 'fascinated': 3356, 'data': 2326, '1980': 74, 'chills': 1655, 'involves': 4804, 'jordan': 4932, 'dates': 2329, 'jake': 4858, 'employed': 3023, 'coach': 1795, 'connections': 1971, 'immature': 4532, 'mini': 5810, 'digital': 2589, 'rival': 7570, 'mortal': 5946, 'graffiti': 3960, 'subway': 8660, 'tragically': 9155, 'diversion': 2701, 'curtain': 2252, 'tango': 8840, 'drummer': 2844, 'pit': 6720, 'berenger': 1002, 'unborn': 9328, 'brooke': 1275, 'adams': 243, 'karen': 4982, 'grader': 3956, 'dominic': 2743, 'marischka': 5556, 'delicate': 2416, 'nowadays': 6229, 'associate': 689, 'sissi': 8165, '1956': 51, 'differences': 2579, 'identical': 4480, 'anton': 542, 'bruno': 1286, 'romy': 7632, 'gently': 3793, 'grateful': 3977, 'hamlet': 4096, 'trend': 9212, 'preferably': 6891, 'extensive': 3275, 'branagh': 1217, 'colours': 1835, 'admirably': 264, 'myriad': 6031, 'doubts': 2769, 'lent': 5208, 'crystal': 2226, '19th': 96, 'lighter': 5256, 'colourful': 1834, 'senses': 7917, 'doyle': 2782, 'magical': 5475, 'exquisite': 3273, 'understatement': 9350, 'fay': 3378, 'continuation': 2018, 'simplicity': 8144, 'posey': 6834, 'complain': 1906, 'captivating': 1440, 'ness': 6124, 'outright': 6437, 'terrorism': 8925, 'slipped': 8228, 'comprehension': 1921, 'goldblum': 3908, 'gained': 3734, 'departure': 2464, 'equals': 3100, 'pacino': 6477, 'warns': 9682, 'begun': 955, 'godfather': 3894, 'shotgun': 8083, 'pretentious': 6926, 'halt': 4091, 'discussion': 2651, 'lingers': 5285, 'guinness': 4046, 'laboratory': 5091, 'textile': 8936, 'gough': 3941, 'impress': 4557, 'regarding': 7319, 'reads': 7236, 'repeats': 7407, 'convinces': 2059, 'bonds': 1152, 'selling': 7903, 'explains': 3242, 'howard': 4398, 'marion': 5554, 'suppress': 8732, 'greed': 3992, 'error': 3112, 'argument': 615, 'difficulties': 2584, 'clothing': 1781, 'styles': 8639, 'dye': 2888, 'chemical': 1629, 'maintain': 5486, 'ridge': 7536, 'warrant': 9685, 'accomplishment': 206, 'darkest': 2316, 'shelf': 8032, 'vcr': 9504, 'nicole': 6150, 'kidman': 5022, 'roeg': 7612, 'timing': 9052, 'likeable': 5265, 'emil': 3008, 'rely': 7364, 'passable': 6556, 'busby': 1345, 'contribute': 2030, 'merk': 5746, 'truths': 9270, 'dig': 2586, 'nostalgic': 6205, '50s': 137, 'astronaut': 709, 'melting': 5708, 'wherever': 9780, 'lit': 5299, 'darkly': 2318, 'noises': 6178, 'tunnel': 9280, 'shae': 7991, '1996': 92, 'october': 6293, 'commented': 1873, 'primarily': 6945, 'scottish': 7823, 'dish': 2662, '11': 6, 'encountered': 3030, 'huh': 4416, 'twelve': 9292, 'cleverly': 1751, 'cole': 1815, 'virus': 9586, 'billion': 1051, 'population': 6817, '1990': 85, 'misfortune': 5837, 'kathryn': 4988, 'railly': 7160, 'goines': 3901, 'provocative': 7047, '1962': 57, 'solution': 8297, 'maintaining': 5488, 'thrill': 9008, 'gilliam': 3833, 'monty': 5910, 'messy': 5759, 'concentration': 1932, 'willis': 9827, 'ideal': 4476, 'madeleine': 5460, 'believer': 976, 'forms': 3612, 'jaw': 4874, 'applaud': 584, 'replacing': 7413, 'coffin': 1804, 'square': 8434, 'legacy': 5192, 'goose': 3929, 'principals': 6952, '101': 5, 'duck': 2855, 'inability': 4569, 'rama': 7174, 'workings': 9898, 'guru': 4052, 'spoofs': 8415, 'butt': 1358, 'pickup': 6696, 'resemble': 7443, 'tower': 9134, 'diego': 2574, 'lion': 5288, 'teens': 8893, 'shrek': 8100, 'firmly': 3488, 'norwegian': 6202, '00': 0, 'praised': 6871, 'norm': 6193, 'comedians': 1851, 'ridiculously': 7538, 'football': 3584, 'rant': 7194, 'predictability': 6887, 'afterwards': 323, 'management': 5510, 'roberts': 7590, 'nights': 6158, '1943': 38, 'greatness': 3990, 'entry': 3090, 'lukas': 5419, 'avoiding': 781, 'bette': 1022, 'extended': 3274, 'lillian': 5271, 'hellman': 4227, 'curio': 2244, 'giants': 3822, '3d': 128, 'shark': 8020, 'beneath': 993, 'footsteps': 3585, 'fulci': 3701, 'lucio': 5408, 'acid': 219, 'dafoe': 2275, 'illustrated': 4512, 'suck': 8670, '1965': 58, 'eighteen': 2963, 'rapid': 7199, 'scriptwriters': 7848, 'fiancé': 3423, 'defining': 2405, '1946': 41, 'spending': 8383, 'storyboard': 8560, 'midnight': 5783, 'histrionic': 4307, 'rebel': 7259, 'nurse': 6242, 'puppy': 7086, 'frightened': 3682, 'periods': 6640, 'outer': 6429, 'thrilled': 9009, 'bridge': 1247, 'satan': 7764, 'beast': 915, 'kingsley': 5041, 'cusack': 2256, 'wash': 9692, 'freaked': 3658, 'tomb': 9083, 'jansen': 4869, 'skater': 8182, 'dimensions': 2600, 'artsy': 652, 'ghosts': 3817, 'toots': 9100, 'michell': 5775, 'awakening': 785, 'grandson': 3969, 'heels': 4214, 'possibility': 6843, 'paintings': 6496, 'davies': 2334, 'rewarding': 7515, 'tear': 8873, 'acquaintances': 221, 'rooting': 7643, 'survival': 8752, 'verhoeven': 9518, 'invisible': 4798, 'bacon': 817, 'visible': 9589, 'robbing': 7587, 'amuse': 463, 'witless': 9863, 'baked': 827, 'mates': 5615, 'precisely': 6882, 'listening': 5298, 'strategy': 8572, '1991': 87, 'terminator': 8916, 'ted': 8885, 'bogus': 1140, 'duo': 2875, '1987': 82, 'instant': 4701, 'hewitt': 4263, 'darker': 2315, 'lovable': 5382, 'reeves': 7301, 'chamber': 1569, 'liu': 5306, 'centres': 1553, 'mill': 5795, 'hiring': 4300, 'chao': 1584, 'fraud': 3656, 'choreography': 1675, 'methods': 5766, 'weapons': 9726, 'bamboo': 836, 'scaffolding': 7783, 'restoration': 7470, 'drew': 2820, 'develops': 2543, 'replies': 7415, 'cell': 1541, 'blockbuster': 1104, 'fore': 3594, 'characterisation': 1589, 'chocolat': 1662, 'acclaimed': 202, 'risky': 7565, 'ensure': 3071, 'adulthood': 284, 'argued': 614, 'rhythm': 7522, 'organized': 6399, 'hanks': 4116, 'rose': 7647, 'assassination': 675, 'rooney': 7641, 'rouge': 7654, 'admirers': 269, 'needless': 6100, 'interminable': 4755, 'regards': 7321, 'object': 6252, 'worship': 9910, 'fairbanks': 3315, 'historically': 4305, 'informed': 4649, 'armies': 623, 'nationalist': 6073, 'thirties': 8986, 'gunga': 4049, 'din': 2602, 'europeans': 3145, 'monotonous': 5900, 'hanged': 4111, 'legitimate': 5197, 'abused': 188, 'dubbed': 2851, 'gleason': 3862, 'taffy': 8814, 'outbreak': 6425, 'rko': 7574, 'snappy': 8259, 'tiresome': 9062, 'concentrates': 1930, 'navy': 6084, 'pursues': 7099, 'cruiser': 2217, 'factual': 3304, 'archaeological': 602, 'mixing': 5861, 'dragons': 2793, 'dinos': 2606, 'educational': 2944, 'serbian': 7941, 'remote': 7388, 'mountains': 5966, 'tech': 8876, 'devices': 2547, 'nostalgia': 6204, 'rule': 7682, 'soviet': 8344, 'active': 229, 'grotesque': 4014, 'catching': 1513, 'lately': 5138, 'doren': 2759, 'auditioning': 752, 'andrews': 487, 'wig': 9815, 'approval': 596, 'whew': 9782, 'moe': 5878, 'pretends': 6924, '500': 136, 'messages': 5756, 'pun': 7077, 'ya': 9949, 'analyze': 474, 'whoopi': 9802, 'resume': 7477, 'sfx': 7983, 'rented': 7399, 'friendly': 3678, 'magically': 5476, 'cured': 2243, 'whim': 9786, 'korda': 5072, 'wells': 9750, 'ratings': 7212, 'cedric': 1533, 'massey': 5597, 'cabal': 1370, 'incomparable': 4591, 'destiny': 2520, 'wisdom': 9848, 'universe': 9388, 'chorus': 1677, 'meat': 5672, 'remark': 7375, 'tracy': 9146, 'gould': 3942, 'colors': 1832, 'trigger': 9229, 'abilities': 165, 'ghastly': 3813, 'treats': 9203, 'deliciously': 2418, 'gangs': 3743, 'tess': 8928, 'advances': 288, 'breathless': 1238, 'madonna': 5467, 'arrives': 637, 'strained': 8565, 'concentrating': 1931, 'recognise': 7270, 'clive': 1766, 'barker': 861, 'graveyard': 3981, 'sleepwalkers': 8214, 'dose': 2763, 'incest': 4576, 'occupied': 6284, 'rockwell': 7606, 'worms': 9905, 'prospect': 7026, 'complicating': 1917, 'shirts': 8056, 'rumored': 7686, 'slimy': 8226, 'reluctantly': 7363, 'bets': 1021, 'butter': 1359, 'meal': 5658, 'hearty': 4204, 'whining': 9789, 'farrelly': 3354, 'freedom': 3664, 'pawns': 6591, 'leaders': 5170, 'mothers': 5954, 'agreed': 339, 'register': 7325, 'dave': 2332, 'replace': 7410, 'drunken': 2847, 'dictator': 2568, 'aided': 345, 'sonia': 8316, 'nary': 6063, 'antwone': 546, 'persona': 6646, 'truthful': 9268, 'convincingly': 2061, 'purple': 7092, 'luke': 5420, 'models': 5873, 'millionaire': 5799, 'stratten': 8573, 'ample': 460, 'clash': 1729, 'ideals': 4478, 'widely': 9808, 'transcends': 9167, 'initial': 4663, '28': 118, 'imposing': 4554, 'voight': 9614, 'hustler': 4453, 'stud': 8616, 'petty': 6661, 'thief': 8976, 'bronx': 1273, 'guardian': 4034, 'backgrounds': 813, 'sylvia': 8795, 'smoke': 8253, 'robertson': 7591, 'shaft': 7992, 'assembled': 678, 'unit': 9385, 'phase': 6665, 'expanded': 3220, '1998': 94, 'deserving': 2503, 'oscars': 6414, 'additional': 254, 'nominations': 6183, 'budgeted': 1301, 'ie': 4491, 'pray': 6873, 'chose': 1678, 'option': 6382, 'searched': 7856, 'endless': 3039, 'sparked': 8357, 'dungeon': 2874, 'thai': 8938, 'anglo': 500, 'outdoor': 6428, 'combat': 1841, 'ha': 4063, 'compromised': 1923, 'idol': 4490, 'projects': 7005, 'weller': 9748, 'hardy': 4136, 'arrogant': 639, 'brandon': 1220, 'pops': 6814, 'drink': 2823, 'lovingly': 5390, 'dismiss': 2667, 'flight': 3536, 'accidentally': 201, 'elvis': 2996, 'roof': 7635, 'casino': 1498, 'promptly': 7013, 'ghetto': 3814, 'boom': 1162, 'shaggy': 7993, 'erase': 3105, 'barton': 870, 'commit': 1878, 'hank': 4114, 'florida': 3547, 'exceptions': 3192, 'jay': 4876, 'casually': 1507, 'trace': 9141, 'fante': 3346, 'fashionable': 3360, 'repair': 7402, 'shortcomings': 8077, 'folly': 3571, 'matthews': 5624, 'ariel': 617, 'ursula': 9456, 'morgana': 5935, 'sea': 7852, 'palace': 6501, 'swim': 8784, 'sebastian': 7864, 'mermaid': 5749, 'triton': 9241, 'trident': 9225, 'penguin': 6615, 'ear': 2899, 'bleeding': 1092, 'grabs': 3950, 'arrive': 635, 'bow': 1195, 'landscape': 5119, 'underwater': 9353, 'tara': 8848, 'offence': 6305, 'drake': 2796, 'grandpa': 3968, 'hamilton': 4095, 'nose': 6203, 'tent': 8912, 'disappeared': 2626, 'obscurity': 6262, 'lure': 5432, 'reviewed': 7502, 'ebert': 2922, 'entertains': 3082, 'coincidence': 1808, 'sappy': 7755, 'shootings': 8069, 'worldly': 9902, 'homeless': 4339, 'skillful': 8188, 'virtue': 9585, 'depend': 2465, 'releases': 7349, 'proceeded': 6968, 'promised': 7009, 'hung': 4433, 'biz': 1071, '97': 155, 'matthau': 5622, 'deny': 2457, 'burns': 1336, 'failing': 3310, 'similarities': 8135, 'shared': 8017, 'canceled': 1412, 'airport': 358, 'jackson': 4853, 'unrecognizable': 9409, 'alicia': 385, 'views': 9559, 'masterfully': 5602, 'graces': 3954, 'magazines': 5472, 'wounded': 9919, 'meanders': 5662, 'ing': 4653, 'schlock': 7803, '1978': 72, '1982': 77, 'filthy': 3461, 'admired': 267, 'shameless': 8007, 'masturbation': 5609, 'mode': 5871, 'wholly': 9799, 'memorably': 5717, 'ambition': 442, 'gina': 3840, 'mawkish': 5630, 'assure': 700, 'crenna': 2174, 'obscure': 6261, 'mystic': 6039, 'beliefs': 972, 'referring': 7306, 'kurt': 5086, 'corporation': 2086, 'doctors': 2718, 'programming': 6995, 'francis': 3647, 'monkey': 5895, 'raffles': 7155, 'distracted': 2688, 'picking': 6694, 'commercials': 1877, 'butler': 1357, 'depardieu': 2460, '1974': 68, 'jeanne': 4881, 'trois': 9247, 'hippies': 4296, 'gerard': 3800, 'bitch': 1065, 'engage': 3048, 'knights': 5058, 'stagnant': 8446, 'barren': 864, 'poetry': 6778, 'translated': 9174, 'dime': 2597, '22': 113, 'lotr': 5375, 'instructor': 4710, 'lucas': 5402, 'secondary': 7867, 'education': 2943, 'teaching': 8870, 'sarcastic': 7759, 'judging': 4949, 'benny': 999, 'gibson': 3823, 'publicity': 7066, 'studios': 8622, 'sony': 8319, 'downhill': 2775, 'inexplicably': 4636, 'newsreel': 6140, 'tokyo': 9076, 'poorest': 6807, 'imaginary': 4519, 'slum': 8238, 'preferred': 6892, 'infants': 4638, 'rewind': 7517, 'carol': 1471, 'parks': 6535, 'downloaded': 2776, 'kings': 5040, 'demon': 2440, 'everytown': 3163, 'represents': 7424, '1966': 59, 'futuristic': 3721, 'civilization': 1717, 'wings': 9838, 'dedicated': 2386, 'reminiscent': 7387, 'metropolis': 5767, 'architecture': 605, '1969': 62, 'inherent': 4660, 'swept': 8782, 'azaria': 800, 'arkin': 619, 'dire': 2610, 'stereo': 8518, 'typed': 9305, 'zeta': 9991, 'minus': 5819, 'originality': 6404, 'mexican': 5768, 'elaborate': 2970, 'lowering': 5394, 'tender': 8907, '6th': 143, 'wilcox': 9816, 'underdeveloped': 9338, 'pushing': 7106, 'kristin': 5079, 'diminishes': 2601, 'rerun': 7435, 'garden': 3750, 'pbs': 6598, 'breakfast': 1231, 'tiffany': 9039, 'barrymore': 867, 'leslie': 5216, 'holly': 4331, 'nathan': 6070, 'gooding': 3921, 'fallon': 3327, 'bombs': 1148, 'selection': 7898, 'hesitant': 4260, 'reel': 7299, '1977': 71, 'shoulder': 8086, 'severed': 7973, 'waterfall': 9707, 'facing': 3298, 'startled': 8480, 'resembled': 7444, 'slater': 8205, 'sinks': 8162, 'intent': 4736, 'hopkins': 4367, 'slipstream': 8230, 'ambiguous': 441, 'experiment': 3233, 'hurled': 4444, 'rudimentary': 7675, 'shaky': 8001, 'reflecting': 7309, 'rocking': 7603, 'drawings': 2804, 'painted': 6494, 'letter': 5227, 'hurry': 4447, 'heir': 4217, 'interviews': 4767, 'yacht': 9950, 'bathing': 890, 'execute': 3205, 'orlando': 6409, 'africa': 318, 'miniseries': 5815, 'taboo': 8809, 'apocalyptic': 567, 'tail': 8816, 'blatantly': 1088, 'vader': 9475, 'frodo': 3684, 'hello': 4228, 'zodiac': 9993, 'nonetheless': 6186, 'basketball': 883, 'providing': 7044, 'profanity': 6984, 'rosie': 7649, 'cleveland': 1749, 'crippled': 2185, 'safe': 7717, 'jeter': 4901, 'toto': 9120, 'gosha': 3936, 'sakamoto': 7726, 'takechi': 8820, 'term': 8915, 'shogunate': 8065, 'orders': 6395, 'loyalist': 5398, 'emperor': 3019, 'clan': 1724, 'revealing': 7495, 'significance': 8124, 'closest': 1776, 'traitor': 9162, 'sway': 8774, 'potentially': 6854, 'feudal': 3418, 'relations': 7341, 'instruments': 4713, 'samurai': 7742, 'inevitably': 4633, 'interests': 4751, 'arrived': 636, 'ships': 8053, 'elite': 2987, 'inclined': 4583, 'obtain': 6275, 'represented': 7423, 'yarn': 9956, 'plodding': 6765, 'rejected': 7334, 'bonanza': 1150, 'cancellation': 1413, 'dexter': 2555, 'offs': 6322, 'misadventures': 5830, 'replacement': 7412, 'fiery': 3435, 'sisters': 8168, 'consist': 1991, 'twins': 9297, 'geniuses': 3787, 'swoon': 8790, 'guinea': 4045, 'services': 7955, 'clone': 1769, 'unlikeable': 9394, 'ripped': 7556, 'arnold': 627, 'schwarzenegger': 7809, 'ranks': 7193, 'threw': 9007, 'clinic': 1762, 'conan': 1926, 'manic': 5516, 'darryl': 2323, 'contestants': 2014, 'privileged': 6960, 'ribs': 7523, 'redeemed': 7290, 'hysterically': 4465, 'capturing': 1444, 'wrapped': 9922, 'behaved': 957, 'absorbing': 182, 'mastroianni': 5608, 'string': 8592, 'trodden': 9246, 'lethal': 5224, 'assets': 682, 'caroline': 1473, 'rex': 7519, 'salman': 7734, 'rani': 7190, 'preity': 6896, 'raj': 7171, 'priya': 6961, 'madhubala': 5461, 'agrees': 340, 'chori': 1676, 'chupke': 1695, 'ne': 6087, 'hai': 4073, 'mann': 5521, 'mehndi': 5697, 'laying': 5165, 'sentiment': 7928, 'countryside': 2111, 'wretched': 9929, 'construction': 2002, 'homo': 4344, 'refreshing': 7313, 'jumping': 4963, 'banality': 838, 'baseball': 872, 'obsessive': 6272, 'adapted': 246, 'sox': 8345, 'tickets': 9034, 'fanatic': 3337, 'misses': 5843, 'attend': 734, 'museum': 6013, 'verge': 9517, '2004': 104, 'joyous': 4940, 'seventies': 7969, 'superlative': 8717, 'shadow': 7988, 'boxes': 1201, 'indifferent': 4621, 'studied': 8619, 'sinking': 8161, 'virile': 9582, 'breathe': 1237, 'housewife': 4394, 'lightweight': 5262, 'omen': 6346, 'nest': 6125, 'charismatic': 1599, 'neighbors': 6111, 'moronic': 5941, 'painting': 6495, 'harrington': 4144, 'maid': 5480, 'evoke': 3169, 'pack': 6478, 'salesman': 7732, 'assault': 676, 'duke': 2863, 'advocate': 300, 'afflicted': 313, 'bipolar': 1059, 'labeled': 5089, 'psychiatric': 7054, 'household': 4392, 'ross': 7650, '1950': 44, 'marries': 5571, 'divorces': 2711, 'medication': 5681, 'magazine': 5471, 'ignorance': 4494, 'generic': 3782, 'african': 319, 'vibrant': 9534, 'astro': 708, 'dub': 2850, 'gus': 4053, 'lola': 5342, 'resemblances': 7442, 'ninja': 6163, 'riders': 7534, 'racial': 7148, 'gender': 3773, 'sasquatch': 7761, 'invited': 4800, 'pleasantly': 6758, 'lifeless': 5248, 'interpreted': 4763, 'proceeds': 6970, 'greta': 4001, 'spinal': 8393, 'syndrome': 8804, 'neglects': 6107, 'georges': 3797, 'highlights': 4277, 'reinforces': 7332, 'neglect': 6105, 'copied': 2070, 'trashy': 9187, 'bursting': 1340, 'houses': 4393, 'instructed': 4708, 'comforting': 1859, 'retains': 7479, 'burdened': 1326, 'tossed': 9117, 'tediously': 8888, 'humane': 4419, 'aussie': 760, 'greener': 3996, 'shouts': 8089, 'endings': 3038, 'cleese': 1747, 'draft': 2788, 'hoot': 4356, 'betrays': 1020, 'paths': 6575, 'knowingly': 5065, 'egg': 2955, 'dynamics': 2893, 'bands': 842, 'behr': 965, 'livien': 5312, 'confess': 1949, 'beatles': 919, 'tia': 9029, 'maria': 5547, 'reached': 7226, 'monaghan': 5888, 'acknowledge': 220, 'complexity': 1915, 'insisted': 4686, 'invading': 4783, 'inspector': 4690, 'dominant': 2738, 'shake': 7995, 'informer': 4650, 'interpret': 4760, 'controlled': 2035, 'passive': 6565, 'predictably': 6889, 'drugged': 2841, 'depends': 2469, 'precision': 6883, 'focusing': 3560, 'coldly': 1814, 'observe': 6265, 'sentimentality': 7930, 'eventual': 3154, 'concluding': 1943, 'locale': 5323, 'admits': 271, 'ambiguity': 440, 'survivors': 8758, 'symbolic': 8797, 'presidential': 6914, 'sincere': 8152, 'limit': 5272, 'perceived': 6622, '1894': 18, 'lumiere': 5423, 'factory': 3302, 'manufactured': 5530, 'enterprise': 3075, '200': 99, 'edison': 2935, 'celluloid': 1543, 'lens': 5207, 'fps': 3635, 'inventing': 4787, 'cranked': 2140, 'projector': 7004, 'riding': 7539, 'cavalry': 1528, 'des': 2490, 'projected': 7002, 'communities': 1888, 'entrance': 3089, 'exterior': 3277, 'gates': 3759, 'photographs': 6683, 'crank': 2139, 'wonderland': 9881, 'vile': 9566, 'emerge': 3005, 'merge': 5743, 'amid': 448, 'emoting': 3012, 'naturalistic': 6077, 'wicked': 9806, 'kilmer': 5034, 'relentlessly': 7352, 'inches': 4578, 'hangs': 4113, 'strutting': 8613, 'begging': 949, 'pivotal': 6727, 'awaiting': 783, 'catholic': 1518, 'elsewhere': 2994, 'bestiality': 1013, 'casts': 1505, 'glance': 3858, 'deeds': 2390, 'hesitation': 4261, 'troubled': 9254, 'strictly': 8588, 'lex': 5235, 'walt': 9656, 'ally': 407, 'exchange': 3196, 'retrieve': 7485, 'tip': 9059, 'ugh': 9311, 'headstrong': 4185, 'damned': 2288, 'profit': 6990, 'reluctant': 7362, 'muppets': 6002, 'geared': 3768, 'frog': 3685, 'mouth': 5969, 'trailers': 9158, 'crown': 2209, 'sophomore': 8326, 'interface': 4752, 'morals': 5929, 'pushed': 7104, 'marching': 5539, 'observer': 6267, 'transparent': 9177, 'confession': 1950, 'stark': 8471, 'affirmative': 311, 'raised': 7168, 'coincidentally': 1809, 'empathetic': 3017, 'occurrence': 6287, 'citizens': 1714, 'vehicles': 9509, 'proof': 7016, 'brains': 1216, 'springer': 8426, 'undeniably': 9336, 'ringmaster': 7549, 'requisite': 7434, 'triangle': 9217, 'rusty': 7700, 'hapless': 4120, 'culminating': 2232, 'altman': 427, 'habit': 4064, 'squalor': 8432, 'errors': 3113, 'screws': 7842, 'simplest': 8143, 'harder': 4134, 'nickelodeon': 6148, 'severely': 7974, 'damaged': 2284, 'exhibit': 3210, 'bergman': 1003, 'tarzan': 8853, 'weissmuller': 9744, 'weismuller': 9743, 'rugged': 7676, 'denny': 2453, 'maureen': 5628, 'kisses': 5047, 'unthinkable': 9426, 'virginia': 9581, 'huston': 4454, 'sparkling': 8360, 'mexicans': 5769, 'fierce': 3434, 'harris': 4145, 'enemies': 3044, 'uneven': 9360, 'testing': 8932, 'stronger': 8602, 'hugs': 4414, 'mysteriously': 6037, 'paquin': 6518, 'unnecessarily': 9397, 'relies': 7358, 'tolkien': 9080, 'recognizable': 7272, 'bakshi': 829, 'decline': 2382, 'burden': 1325, 'increases': 4604, 'liberties': 5238, 'explores': 3258, 'liking': 5270, 'chillingly': 1654, 'dangerously': 2301, 'documented': 2722, 'prototype': 7034, 'equal': 3098, 'alternative': 425, 'zoo': 9999, 'ignoring': 4499, 'northern': 6201, 'surfing': 8739, 'fisherman': 3494, 'placid': 6733, 'surf': 8737, 'injuries': 4667, 'everywhere': 3164, 'carrere': 1477, 'mcnamara': 5654, 'online': 6355, 'root': 7642, 'kudos': 5083, 'networks': 6128, 'vices': 9536, 'stability': 8441, 'gillian': 3834, 'mannerisms': 5525, 'gestures': 3808, 'contrasting': 2029, 'elementary': 2980, 'competent': 1904, 'leering': 5189, 'travelogue': 9193, 'strut': 8612, 'dani': 2303, 'madly': 5464, 'enters': 3076, 'warfield': 9672, 'jealousy': 4879, 'hunted': 4439, 'hunters': 4441, 'murray': 6011, 'prey': 6938, 'korean': 5074, 'peaked': 6603, 'succeeded': 8662, 'blockbusters': 1105, 'mainland': 5483, 'digitally': 2590, 'legends': 5196, 'lol': 5341, 'cousins': 2124, 'memories': 5719, 'discount': 2639, 'bennett': 998, 'theatres': 8950, '1985': 80, 'attenborough': 733, 'spark': 8356, 'lift': 5251, 'uneasy': 9358, 'regime': 7322, 'proverbial': 7039, 'parking': 6534, 'tasty': 8859, 'laden': 5099, 'ruining': 7679, 'dinosaurs': 2608, 'bite': 1067, 'terrorists': 8926, 'hi': 4265, 'rubber': 7669, 'rips': 7558, 'marine': 5551, 'elephant': 2982, 'roars': 7581, 'sized': 8181, 'drift': 2821, 'edit': 2936, 'indicate': 4616, 'superbly': 8713, '1954': 49, 'bud': 1297, 'daddy': 2274, 'facial': 3297, 'corey': 2078, 'jet': 4900, 'yuk': 9985, 'bitchy': 1066, 'artwork': 653, 'butch': 1355, 'mammy': 5506, 'lazy': 5166, 'slams': 8200, 'snatch': 8260, 'ray': 7220, 'symbolism': 8798, 'ritchie': 7567, 'mister': 5852, 'fellows': 3403, 'mainstream': 5485, 'outline': 6434, 'columbine': 1837, 'massacre': 5595, 'inspirational': 4692, 'athena': 716, 'gadget': 3727, 'chan': 1572, 'miracles': 5825, 'vary': 9498, 'lin': 5276, 'cheung': 1635, 'shootout': 8070, 'woo': 9885, 'transport': 9178, 'chans': 1583, 'storey': 8556, 'factors': 3301, 'incorporate': 4599, 'padding': 6485, 'displaying': 2673, 'nina': 6159, 'jury': 4969, 'mores': 5933, 'circa': 1707, 'armed': 622, 'slaves': 8207, 'irreverent': 4820, 'wider': 9809, 'irs': 4826, 'ludicrously': 5414, 'marketed': 5561, 'aspiring': 671, 'rapidly': 7200, '90s': 153, 'rhys': 7521, 'ifans': 4493, 'fiennes': 3433, 'shouting': 8088, 'fitzgerald': 3501, 'morricone': 5944, 'spaghetti': 8352, 'lemmon': 5200, 'maker': 5493, 'owes': 6464, 'novak': 6222, 'vertigo': 9525, 'ernie': 3108, 'kovacs': 5075, 'gingold': 3843, 'laurel': 5154, 'split': 8402, 'venture': 9515, 'stooges': 8549, 'tangled': 8839, 'serum': 7947, 'expresses': 3270, 'feast': 3383, 'lands': 5118, 'fireplace': 3484, 'tumbling': 9276, 'greenhouse': 3997, 'projection': 7003, 'screens': 7836, 'offbeat': 6304, 'prolific': 7006, 'glee': 3863, 'roach': 7575, 'enormous': 3064, 'boost': 1163, 'shield': 8044, 'enhanced': 3056, 'jan': 4863, 'cruelty': 2215, 'confirmed': 1954, 'healthy': 4188, 'maher': 5479, 'intellect': 4724, 'assertion': 679, 'stare': 8467, 'hmmm': 4315, 'islam': 4829, 'liberal': 5237, 'fellini': 3401, 'biased': 1032, 'interlude': 4754, 'annamarie': 515, 'closure': 1779, 'informative': 4648, 'theirs': 8954, 'rack': 7151, 'bravery': 1225, 'muslim': 6019, 'lesbians': 5214, 'tackle': 8811, 'appreciation': 590, 'reflected': 7308, 'impending': 4544, 'harlow': 4138, 'eadie': 2896, 'patsy': 6582, 'kitty': 5051, 'missouri': 5847, 'gift': 3825, 'lionel': 5289, 'declares': 2381, 'listed': 5295, 'pendleton': 6613, 'downtown': 2780, 'griffith': 4004, 'intolerance': 4770, 'criticisms': 2193, 'sections': 7875, 'las': 5132, 'vegas': 9507, 'strives': 8598, 'exposing': 3265, 'intricate': 4771, 'stevens': 8526, 'mozart': 5981, 'luc': 5401, 'chuck': 1692, 'sketch': 8184, 'ian': 4467, 'rocks': 7604, 'spree': 8424, 'counter': 2105, 'slew': 8217, 'goofs': 3927, 'loopholes': 5359, 'vow': 9624, 'brashear': 1222, 'admitted': 272, 'diver': 2699, 'ledger': 5187, 'helicopter': 4224, 'goldsworthy': 3912, 'letting': 5229, 'smallest': 8242, 'greatly': 3989, 'portrayals': 6827, 'katie': 4990, 'comparisons': 1899, 'trashed': 9186, 'claimed': 1720, 'concentrate': 1929, 'actuality': 239, 'rosario': 7646, 'displayed': 2672, 'maya': 5634, 'region': 7324, 'motorcycle': 5963, 'genders': 3774, 'remained': 7369, 'slim': 8225, 'drowned': 2838, 'cigarette': 1700, 'diving': 2707, 'audio': 751, 'wide': 9807, 'smartly': 8245, 'relatives': 7346, 'spoken': 8411, 'hebrew': 4211, 'observes': 6268, 'strive': 8597, 'astute': 711, 'hype': 4457, 'enormously': 3065, 'layered': 5164, 'chainsaw': 1563, 'narratives': 6060, 'premiered': 6899, 'antonio': 544, 'trivia': 9244, 'melissa': 5702, 'negligible': 6108, 'adulterous': 282, 'titular': 9067, 'participation': 6544, 'bloom': 1114, 'marathon': 5535, 'languages': 5125, 'legal': 5193, 'depending': 2468, 'insects': 4677, 'uma': 9319, 'thurman': 9027, 'washing': 9694, 'desk': 2512, 'surround': 8748, 'ensues': 3069, 'shooter': 8067, 'babes': 803, 'um': 9318, 'bout': 1194, 'apologies': 568, 'rodriguez': 7611, 'girlfight': 3845, 'darn': 2321, 'adrian': 280, 'areas': 610, 'anger': 495, '69': 142, 'dives': 2704, 'marked': 5559, 'medieval': 5683, 'quotes': 7141, 'catherine': 1517, 'flies': 3535, 'tripping': 9237, 'addiction': 251, 'capacity': 1430, 'charlotte': 1603, 'roughly': 7656, 'rep': 7401, 'btw': 1292, 'diane': 2564, 'adored': 279, 'addicted': 250, 'thelma': 8955, 'louise': 5380, 'vulgar': 9628, 'incapable': 4575, 'caper': 1432, 'stupidest': 8635, 'warped': 9684, 'dont': 2749, 'wrath': 9923, 'conveying': 2050, 'dorff': 2760, 'troops': 9251, 'drums': 2845, 'difficulty': 2585, 'shifting': 8046, 'suggested': 8685, 'ostensibly': 6415, 'reward': 7513, 'trent': 9214, 'unsympathetic': 9424, 'insults': 4719, 'heartland': 4201, 'gate': 3758, 'fraction': 3636, 'joys': 4941, 'anarene': 475, 'closes': 1775, 'bridges': 1248, 'shepherd': 8037, 'meg': 5694, 'fetched': 3415, 'esque': 3122, 'insulted': 4716, 'division': 2708, 'viewpoint': 9558, 'begs': 954, 'opinions': 6370, 'noam': 6170, 'jerusalem': 4894, 'lighthearted': 5257, 'rabbits': 7144, 'intensely': 4734, 'lydia': 5439, 'brennan': 1242, 'amos': 456, 'purchased': 7088, 'bless': 1096, 'departed': 2462, 'pranks': 6872, 'crooks': 2200, 'determine': 2534, 'installment': 4697, 'remembering': 7381, 'assured': 701, 'coverage': 2126, 'basics': 879, 'unrelated': 9410, 'conception': 1934, 'attract': 741, 'adventures': 291, 'immediate': 4533, 'arguments': 616, 'holden': 4323, 'advise': 297, 'caution': 1527, 'chess': 1633, 'forewarned': 3599, 'versus': 9524, 'reviewing': 7505, 'illuminate': 4508, 'skull': 8197, 'outta': 6442, 'boasts': 1129, 'burial': 1330, 'assures': 702, 'freshness': 3673, 'identified': 4481, 'semester': 7906, 'angst': 502, 'lynch': 5442, '98': 156, 'deathtrap': 2361, 'definition': 2408, 'reeve': 7300, 'joined': 4922, 'veterans': 9528, 'taxi': 8863, 'pigs': 6707, 'flawed': 3519, 'vanishing': 9491, 'niece': 6151, 'dropped': 2834, 'hammer': 4097, 'sinatra': 8150, 'maclaine': 5455, 'nuts': 6244, 'brawl': 1227, 'vivid': 9604, 'progresses': 6999, 'worthless': 9913, 'aisle': 359, 'observed': 6266, 'excesses': 3194, '1951': 46, 'overhead': 6453, 'avoids': 782, 'lean': 5174, 'pirates': 6718, 'moulin': 5964, 'poitier': 6786, 'pathological': 6573, 'grayson': 3984, 'mercy': 5739, 'operatic': 6365, 'agony': 337, 'questionable': 7127, 'niven': 6167, 'relentless': 7351, 'olds': 6334, 'impersonating': 4545, 'envy': 3093, 'gut': 4055, 'utopia': 9470, 'lowered': 5393, 'deaf': 2349, 'matte': 5619, 'belly': 982, 'metal': 5761, 'headache': 4179, 'email': 2998, 'plausible': 6748, 'valley': 9483, 'voted': 9622, 'amanda': 432, 'affection': 308, 'colbert': 1812, 'toronto': 9110, 'intentionally': 4739, 'husbands': 4451, 'iran': 4807, 'soccer': 8274, 'challenged': 1566, 'iron': 4813, 'fish': 3491, 'directs': 2620, 'bard': 855, 'wayward': 9717, 'nails': 6045, 'summation': 8701, 'wonders': 9882, 'sidney': 8115, '1973': 67, 'frankenheimer': 3651, 'scheider': 7799, 'trebor': 9204, 'raped': 7198, 'preston': 6919, 'se': 7851, 'ragged': 7157, 'filth': 3460, 'examination': 3180, 'viewings': 9557, 'renegade': 7395, 'fulfilling': 3702, 'vu': 9627, 'recurring': 7286, 'escaped': 3115, 'fabric': 3291, 'conveyor': 2051, 'emergence': 3006, 'coat': 1799, 'simmons': 8139, 'shipman': 8052, 'maxwell': 5632, 'parodies': 6536, 'mack': 5454, 'imitating': 4529, 'anita': 512, '1917': 22, 'jj': 4909, 'critic': 2189, 'overbearing': 6447, 'tomba': 9084, 'quarters': 7120, 'destructive': 2526, '1993': 89, 'velvet': 9511, 'huppert': 4443, 'wwi': 9944, 'instincts': 4706, 'brady': 1211, 'bird': 1060, 'paulie': 6588, 'parrot': 6538, 'pesci': 6656, 'robbins': 7588, 'farm': 3350, 'fought': 3626, 'beggars': 947, 'horses': 4380, 'beans': 909, 'moorehead': 5919, 'wagner': 9633, 'lange': 5123, 'hairstyles': 4078, 'residence': 7447, 'rope': 7645, 'morally': 5928, 'depict': 2470, 'phones': 6676, 'gunned': 4050, 'preparation': 6902, 'confronted': 1959, 'peck': 6606, 'ruthlessly': 7703, 'yankovic': 9954, 'mockumentary': 5870, 'vignettes': 9562, 'longest': 5350, 'suggesting': 8686, 'campers': 1405, 'santa': 7754, 'darkheart': 2317, 'eh': 2961, 'voiced': 9611, 'richly': 7529, 'slam': 8199, 'hurricane': 4446, 'tearjerker': 8874, 'er': 3103, 'relation': 7340, 'naval': 6083, 'abhorrent': 164, 'admirable': 263, 'lay': 5163, 'pathos': 6574, '1934': 31, 'immersed': 4537, 'conniving': 1975, 'sleeps': 8213, 'broad': 1264, 'reversed': 7500, 'retired': 7483, 'benjamin': 997, 'monumental': 5911, 'valentine': 9479, 'vaudeville': 9502, 'potato': 6852, 'chip': 1660, 'cheh': 1627, 'lizard': 5314, 'battles': 897, 'muffled': 5991, 'shaw': 8025, 'establishment': 3130, 'sophia': 8322, 'loren': 5365, 'canvas': 1425, 'shakes': 7996, 'newer': 6134, 'alpha': 415, 'eighth': 2964, 'characterization': 1592, 'goldie': 3910, 'hawn': 4171, 'duration': 2876, 'revolver': 7511, 'ecstasy': 2925, 'richie': 7528, 'row': 7664, 'brained': 1213, 'comparing': 1897, 'uptight': 9452, 'confidence': 1951, 'dench': 2446, 'widow': 9811, 'alimony': 391, 'holm': 4333, 'caron': 1474, 'bass': 884, 'intelligently': 4729, 'inventive': 4789, 'belong': 983, 'italy': 4842, 'babe': 802, 'furniture': 3716, 'chicago': 1639, 'secular': 7876, 'travolta': 9196, 'pam': 6508, 'implies': 4548, 'anyways': 558, 'korea': 5073, 'gojoe': 3905, 'jewish': 4903, 'stupider': 8634, 'cartwright': 1492, 'bartender': 869, 'females': 3406, 'blunt': 1121, 'invariably': 4784, 'talentless': 8827, 'objects': 6255, 'sanjay': 7750, 'deveraux': 2544, 'controls': 2038, 'breed': 1240, 'slips': 8229, 'secure': 7877, 'poetic': 6777, 'furious': 3715, 'scratched': 7825, 'repertoire': 7408, 'distribution': 2692, 'uncredited': 9334, 'shapiro': 8014, 'zany': 9989, 'chevy': 1636, 'belzer': 990, 'spoofing': 8414, 'cooking': 2065, 'dealers': 2352, 'influential': 4644, 'shadows': 7989, 'unnerving': 9399, 'soles': 8291, 'waist': 9635, 'copyright': 2075, 'posted': 6847, 'html': 4402, 'paragraph': 6523, 'blank': 1085, 'disgruntled': 2656, 'serviceable': 7954, 'summoned': 8703, 'telephone': 8896, 'anchor': 477, 'forgivable': 3602, 'conveyed': 2049, 'courage': 2118, 'mcadams': 5638, 'murphy': 6010, 'tick': 9032, 'operating': 6366, 'lethargic': 5225, 'beware': 1028, 'coupled': 2116, 'ponder': 6802, 'uncreative': 9333, 'mismatched': 5840, 'rescues': 7438, 'gypo': 4061, 'gracefully': 3953, 'starving': 8483, 'alternating': 424, 'explicitly': 3246, '1929': 27, 'associates': 691, 'ny': 6247, 'obscene': 6260, 'corn': 2079, 'conspiracy': 1996, 'uniforms': 9375, 'corrupt': 2091, 'blatant': 1087, 'theories': 8963, 'viet': 9549, 'nam': 6048, 'madhur': 5462, 'bhandarkar': 1031, 'endlessly': 3040, 'parties': 6547, 'sharma': 8021, 'hostess': 4384, 'pearl': 6605, 'diversions': 2702, 'rotten': 7652, 'couch': 2101, 'hunger': 4434, 'benign': 996, 'bites': 1068, 'societal': 8277, 'involve': 4801, 'fur': 3714, '1979': 73, 'psychologically': 7059, 'sans': 7752, 'valerie': 9480, 'quincy': 7134, 'ba': 801, 'battlefield': 896, 'dramatically': 2800, 'norma': 6194, 'berkeley': 1004, 'sober': 8273, 'suspension': 8766, 'forgiving': 3605, 'messing': 5758, 'citizen': 1713, 'vincent': 9573, 'banter': 848, 'exit': 3217, 'hmm': 4314, 'asset': 681, 'offend': 6306, 'protracted': 7035, 'thru': 9023, 'bete': 1015, 'notoriety': 6219, 'anticipated': 538, 'click': 1756, 'subtly': 8658, 'bean': 908, 'comeback': 1849, 'flexible': 3532, 'poo': 6804, 'weakness': 9721, 'enemy': 3045, 'miraglia': 5827, 'evelyn': 3149, 'intact': 4721, 'motive': 5961, 'truely': 9259, 'stargate': 8469, 'coke': 1810, 'ingenious': 4654, 'bio': 1056, 'golf': 3914, 'altering': 420, 'julie': 4957, 'debbie': 2364, 'hideous': 4269, 'devoid': 2550, 'morton': 5948, 'raptor': 7202, 'miscasting': 5832, 'jedi': 4882, 'rousing': 7660, 'saga': 7721, 'falcon': 3322, 'willingly': 9826, 'seventh': 7968, 'neill': 6113, 'letdown': 5223, 'da': 2272, 'priests': 6943, 'viking': 9564, 'hats': 4162, 'vikings': 9565, 'juan': 4943, '1948': 42, 'hara': 4130, 'buccaneer': 1294, 'pirate': 6717, 'preceded': 6879, 'flags': 3506, 'vintage': 9575, 'caribbean': 1460, 'incidentally': 4581, 'remade': 7366, 'doug': 2770, 'mcclure': 5641, 'unprecedented': 9403, 'consisted': 1992, '1952': 47, 'gods': 3896, 'switched': 8789, 'profile': 6989, 'storm': 8558, 'katsu': 4991, 'lone': 5345, 'hanzo': 4118, 'razor': 7222, 'ninjas': 6164, 'shady': 7990, 'treasury': 9198, 'utilized': 9469, 'nerd': 6120, 'predict': 6886, 'pokes': 6788, 'orgy': 6400, 'fraggle': 3637, 'fourteen': 3631, 'playful': 6753, 'inhabited': 4659, 'plants': 6745, 'gobo': 3890, 'automobiles': 773, 'excitement': 3198, 'squad': 8431, 'raines': 7164, 'memphis': 5721, 'nicolas': 6149, 'bandits': 841, 'duvall': 2883, 'patton': 6585, 'earned': 2904, 'cannibal': 1419, 'bloodthirsty': 1112, 'lungs': 5430, 'gwyneth': 4060, 'paltrow': 6507, 'vastly': 9501, 'clueless': 1787, 'buff': 1303, 'postman': 6850, 'mara': 5534, 'unbeknownst': 9325, 'eater': 2920, 'investigator': 4795, 'skippy': 8194, 'upset': 9450, 'mockery': 5868, 'progressive': 7000, 'colonial': 1828, 'passions': 6564, 'porter': 6821, 'nun': 6240, 'mae': 5469, 'nigel': 6153, 'rushes': 7695, 'burned': 1334, 'remainder': 7368, 'trial': 9215, 'lunatic': 5426, 'marcello': 5537, 'bogart': 1137, 'luis': 5417, 'clunky': 1791, 'jersey': 4893, 'angie': 497, 'carell': 1456, 'rogen': 7613, 'shelley': 8034, 'electronics': 2976, 'vivacious': 9601, 'raunchy': 7216, 'astoundingly': 707, 'objectively': 6254, 'ruben': 7671, 'jewison': 4904, 'breakdancing': 1230, '1984': 79, 'hugely': 4407, 'heartwarming': 4203, 'gap': 3746, 'june': 4965, 'allyson': 408, 'hoover': 4357, 'kolchak': 5069, 'mcgavin': 5649, 'fonda': 3573, 'courtroom': 2122, 'todd': 9071, 'generate': 3778, 'stunk': 8628, 'keyboard': 5014, 'omg': 6347, 'freaks': 3659, 'ilk': 4502, 'income': 4590, 'hug': 4405, 'midget': 5782, 'prominent': 7007, 'brando': 1219, 'waterfront': 9708, 'vivian': 9603, 'rockin': 7602, 'dyke': 2890, 'mannered': 5524, 'crosses': 2204, 'followers': 3568, 'survived': 8754, 'volunteer': 9617, 'blob': 1102, 'excellently': 3186, 'anthology': 534, 'bromwell': 1270, 'programs': 6996, '23': 114, 'beef': 937, 'announcer': 520, 'penis': 6616, 'glued': 3885, 'stripping': 8596, 'passages': 6558, 'marijuana': 5549, 'lane': 5121, 'freak': 3657, 'participate': 6542, 'overdone': 6452, 'hahk': 4072, 'tolerable': 9078, 'cabaret': 1371, 'asia': 660, 'techno': 8882, 'possibilities': 6842, 'perception': 6624, 'anticipation': 539, 'dot': 2764, 'costuming': 2099, 'apologize': 569, 'summarize': 8699, 'locks': 5332, 'binder': 1055, 'irritated': 4823, 'interaction': 4744, 'discussed': 2649, 'studies': 8620, 'replay': 7414, 'injustice': 4668, 'insisting': 4687, 'egotistical': 2958, 'amnesia': 451, 'unrated': 9405, 'alibi': 383, 'murderers': 6006, 'cuteness': 2262, 'courtesy': 2121, 'broderick': 1267, 'renoir': 7396, 'regarded': 7318, 'femme': 3409, 'fatale': 3367, 'nana': 6054, 'companion': 1891, 'memoirs': 5715, 'wives': 9868, 'deliberate': 2414, 'suitors': 8695, 'elegance': 2977, 'werner': 9759, 'tinted': 9057, 'atwill': 746, 'mabel': 5446, 'begged': 948, 'barn': 862, 'robbers': 7585, 'barrier': 865, 'danes': 2298, 'othello': 6416, 'iago': 4466, 'fishburne': 3492, 'refuse': 7314, 'barbarian': 851, 'gingerbread': 3842, 'cape': 1431, 'kidnapped': 5024, 'returned': 7487, 'righteous': 7542, 'deplorable': 2476, 'hunting': 4442, 'murderous': 6008, 'counterpoint': 2106, 'approaching': 593, 'account': 208, 'cher': 1632, 'moonstruck': 5917, 'id': 4473, 'rendered': 7392, 'admiration': 265, 'illusion': 4509, 'spaceship': 8348, 'ounce': 6421, 'meditation': 5686, 'buried': 1331, 'horrendous': 4370, 'dazzled': 2341, 'overwhelming': 6462, 'suspicion': 8767, 'controlling': 2037, 'partially': 6540, 'wright': 9930, 'composer': 1919, 'dignity': 2591, 'divorced': 2710, 'villainous': 9570, 'gomez': 3915, 'elisha': 2986, 'cornell': 2080, 'plotting': 6769, 'assist': 685, 'minions': 5814, 'maltese': 5503, 'reunited': 7492, 'developments': 2542, 'arquette': 629, 'conscious': 1981, 'corners': 2082, 'unscathed': 9416, 'angels': 494, 'clips': 1765, 'dozens': 2784, 'excuses': 3204, 'faster': 3364, 'wrenching': 9925, 'ambiance': 439, 'vietnamese': 9551, 'bell': 979, 'candle': 1416, 'sweetheart': 8781, 'henderson': 4242, 'circle': 1708, 'merle': 5747, 'spell': 8379, 'manners': 5526, 'greenwich': 3998, 'wolfe': 9871, 'elsa': 2992, 'lanchester': 5114, 'unusually': 9432, 'fey': 3421, 'kaufman': 4992, 'stiller': 8535, 'antonioni': 545, 'daria': 2311, 'floyd': 3550, 'cancelled': 1414, 'combines': 1845, 'matches': 5612, 'instrumental': 4712, 'transportation': 9179, 'bye': 1367, 'waits': 9640, 'insanity': 4675, 'launch': 5151, 'scooby': 7816, 'doo': 2750, 'disgraceful': 2655, 'pocket': 6773, 'microfilm': 5778, 'antiques': 541, 'toupee': 9127, 'tina': 9055, 'chen': 1631, 'suave': 8643, 'redford': 7293, 'wardrobe': 9671, 'jacket': 4851, 'dunaway': 2871, 'cunning': 2240, 'moody': 5914, 'fence': 3410, 'lester': 5221, 'commend': 1868, 'scrooge': 7849, 'sellers': 7902, 'randomly': 7183, 'illustrate': 4511, 'rodder': 7609, 'carlos': 1466, 'mencia': 5725, 'jabs': 4849, 'hooked': 4353, 'sant': 7753, 'towers': 9135, 'meter': 5764, 'disservice': 2676, 'teddy': 8886, 'martha': 5578, 'vivah': 9602, 'shahid': 7994, 'amrita': 461, 'menu': 5735, 'mendes': 5726, 'representative': 7422, 'whipping': 9793, 'garage': 3747, 'activity': 232, 'bridget': 1249, 'aiello': 347, 'gradually': 3957, 'contributed': 2031, 'grass': 3976, 'prostitution': 7028, 'moose': 5920, 'gielgud': 3824, 'demeanor': 2434, 'bon': 1149, 'jovi': 4938, 'arly': 620, 'jover': 4937, 'complaints': 1910, 'reaching': 7228, 'flames': 3509, 'mormons': 5938, 'hyrum': 4462, 'rejection': 7335, 'opposition': 6377, 'moviegoers': 5978, 'barrage': 863, 'splendid': 8401, 'obstacle': 6273, 'muni': 6001, 'wang': 9661, 'lung': 5429, 'luise': 5418, 'rainer': 7163, 'lan': 5112, 'realizing': 7250, 'worn': 9906, 'passage': 6557, 'seventy': 7970, 'trippy': 9238, 'glenn': 3865, 'norman': 6197, 'kane': 4978, 'distinctly': 2683, 'commodity': 1883, 'crowe': 2208, 'burnt': 1337, 'olen': 6336, 'poe': 6775, 'scarecrows': 7787, 'occurrences': 6288, 'psychopath': 7062, 'snow': 8269, 'politicians': 6797, 'crashes': 2144, 'pancake': 6512, 'transmitted': 9176, 'diagnosis': 2556, 'awarded': 787, 'justification': 4972, 'gloria': 3873, 'tibetan': 9031, 'climb': 1761, 'sighted': 8118, 'subsequently': 8652, 'goals': 3888, 'desires': 2511, 'assessment': 680, 'indestructible': 4611, 'miraculously': 5826, 'monday': 5890, 'saura': 7772, 'quintessential': 7136, 'surroundings': 8751, 'irritate': 4822, 'confronts': 1960, 'bounty': 1193, 'android': 488, 'alienator': 388, 'bowie': 1196, 'shapes': 8013, '3000': 123, 'tire': 9060, 'snakes': 8258, 'injured': 4666, 'airplane': 357, 'socialist': 8276, 'finance': 3465, 'dominating': 2742, 'definitive': 2409, 'carlito': 1465, 'rambo': 7177, 'glamor': 3855, 'ripping': 7557, 'mist': 5848, 'outdated': 6427, 'jfk': 4906, 'protection': 7032, 'flair': 3507, 'glowing': 3883, 'yard': 9955, 'marrying': 5573, 'undertones': 9352, 'pillow': 6709, 'spiderman': 8387, 'glitch': 3870, 'update': 9443, 'scored': 7818, 'muscle': 6012, 'skinned': 8191, 'knotts': 5062, 'delighted': 2420, 'stares': 8468, 'cheaply': 1616, 'holocaust': 4335, 'gambit': 3737, 'considerably': 1987, 'dome': 2736, 'knock': 5059, 'mannequin': 5522, 'meryl': 5751, 'streep': 8577, 'phantasm': 6663, 'duh': 2862, 'eleven': 2985, 'northam': 6200, 'companies': 1890, 'rita': 7566, 'nifty': 6152, 'spawn': 8361, 'pages': 6487, 'booth': 1165, 'rightfully': 7543, 'chaplin': 1586, 'nightmares': 6157, 'foxx': 3634, 'thugs': 9024, 'grendel': 4000, 'announcement': 519, 'beowulf': 1001, 'poem': 6776, 'refused': 7315, 'helmets': 4232, 'marina': 5550, 'tables': 8808, 'mullet': 5994, 'ingrid': 4656, 'peters': 6660, 'sank': 7751, 'harm': 4139, 'scratches': 7826, 'deck': 2380, 'fido': 3429, 'timmy': 9053, 'resurrected': 7478, 'radiation': 7152, 'moss': 5949, 'esquire': 3123, 'constance': 1997, 'unsure': 9422, 'redgrave': 7294, 'gardener': 3751, 'shack': 7986, 'inhabit': 4657, 'traits': 9163, 'experimental': 3234, 'tucker': 9275, 'puberty': 7064, 'airing': 356, 'splatter': 8400, 'nr': 6231, 'inducing': 4626, 'hotter': 4388, 'violently': 9579, 'shares': 8018, 'mistreated': 5853, 'deconstructed': 2384, 'spouse': 8422, 'caretaker': 1458, 'ourselves': 6423, 'environmental': 3092, 'esteem': 3132, 'retire': 7482, 'spilling': 8391, 'sided': 8110, 'muslims': 6020, 'hadith': 4068, 'christianity': 1683, 'bombing': 1147, 'entirety': 3087, 'quantum': 7118, 'weed': 9736, 'sparkles': 8359, 'anxiety': 548, 'dismissed': 2668, 'shift': 8045, 'principle': 6953, 'achieves': 217, 'israel': 4834, 'communication': 1886, 'jews': 4905, 'tanya': 8842, 'hamill': 4094, 'affleck': 312, 'herd': 4246, 'fills': 3452, 'deniro': 2449, 'ongoing': 6354, 'ruiz': 7681, 'calmly': 1389, 'alternately': 422, 'swift': 8783, 'countess': 2107, 'tremendously': 9210, 'incorporates': 4600, 'ruled': 7683, 'lafitte': 5102, 'yul': 9986, 'brynner': 1290, 'adviser': 299, 'governor': 3944, 'bradley': 1210, 'decoration': 2385, 'mounted': 5967, 'alienation': 387, 'vittorio': 9600, 'benefit': 994, 'disturb': 2695, 'beckinsale': 929, 'samantha': 7738, 'knightley': 5056, 'excepting': 3188, 'olivia': 6339, 'forum': 3621, 'disasters': 2634, 'conquers': 1977, 'biography': 1057, 'columbia': 1836, 'showcases': 8092, 'hayworth': 4175, 'bannister': 847, 'everett': 3157, 'helpless': 4237, 'grisby': 4008, 'ploy': 6770, 'suitably': 8693, 'romantically': 7626, 'reflects': 7312, 'reagan': 7238, 'troublesome': 9256, 'forwarded': 3623, 'hobbits': 4317, 'aragorn': 600, 'ranger': 7187, 'viggo': 9560, 'mortensen': 5947, 'gandalf': 3740, 'orcs': 6391, 'humanoid': 4421, 'mouths': 5971, 'immersion': 4538, 'ash': 656, 'mccrea': 5645, 'hunk': 4436, 'disgust': 2659, 'poppins': 6813, 'ghostly': 3816, 'commanding': 1866, 'capt': 1438, 'dillman': 2594, 'gen': 3772, 'supply': 8725, 'unfold': 9366, 'penalty': 6612, 'incestuous': 4577, 'lump': 5425, 'appallingly': 572, 'abandon': 160, 'gershwin': 3806, 'levant': 5230, 'bickering': 1035, 'claus': 1738, 'pet': 6657, 'blooded': 1110, 'gabriel': 3725, 'parable': 6520, 'hernandez': 4250, 'lengthy': 5206, 'puff': 7068, 'rural': 7692, 'adultery': 283, 'milland': 5796, 'caprica': 1436, 'nausicaa': 6082, 'possession': 6841, 'gail': 3731, 'strangler': 8571, '19': 19, 'button': 1361, 'insomnia': 4689, 'gandolfini': 3741, 'rolls': 7622, 'greek': 3994, 'casablanca': 1494, 'compete': 1903, 'dreadfully': 2809, 'letters': 5228, 'gig': 3828, 'invasion': 4785, 'cate': 1515, 'disappoints': 2632, 'pretentiousness': 6927, 'sherlock': 8040, 'augustus': 756, 'milverton': 5802, 'servant': 7948, 'cushing': 2257, 'sophie': 8323, 'frye': 3697, 'bats': 894, 'resemblance': 7441, 'grudge': 4026, 'strickland': 8586, 'enthusiastic': 3084, 'instruction': 4709, 'inc': 4574, 'swimming': 8785, 'myles': 6030, 'berkowitz': 1005, 'andreeff': 485, 'hybrid': 4455, 'diamonds': 2562, 'oklahoma': 6329, 'drain': 2795, 'grease': 3985, 'aesthetic': 301, 'harrison': 4146, 'fleeting': 3528, 'omar': 6345, 'blamed': 1083, 'mills': 5801, 'billie': 1049, 'exorcist': 3218, 'charley': 1601, 'mcgregor': 5651, 'collar': 1817, 'canal': 1411, 'supermarionation': 8719, 'indicated': 4617, 'thunderbirds': 9026, 'pistols': 6719, 'morons': 5943, 'scratching': 7827, 'howling': 4401, 'criticized': 2194, 'lycanthrope': 5438, 'gimmicky': 3839, 'eleanor': 2973, 'cagney': 1375, 'goody': 3925, 'denying': 2458, 'natalie': 6067, 'audrey': 753, 'manager': 5511, 'jenny': 4888, 'hartley': 4151, 'idiosyncrasies': 4486, 'espionage': 3121, 'annoyingly': 525, 'affecting': 307, 'spectrum': 8374, 'curve': 2255, 'pause': 6589, 'grams': 3963, 'beirut': 968, 'bogey': 1138, 'tierney': 9037, 'masked': 5590, 'ppv': 6866, 'wrestlers': 9927, 'wwe': 9943, 'championship': 1571, 'cena': 1545, 'rvd': 7704, 'streak': 8575, 'triple': 9236, 'whimsical': 9788, 'dahmer': 2278, 'sandy': 7746, 'www': 9946, 'becky': 930, 'charms': 1607, 'pot': 6851, 'predicament': 6885, 'fuzzy': 3722, 'antonietta': 543, 'cruella': 2214, 'modification': 5877, 'dalmatians': 2281, 'signature': 8122, 'indicates': 4618, 'fetchit': 3416, 'hyped': 4458, 'joins': 4924, 'helmed': 4230, 'cube': 2228, 'choir': 1665, 'befriend': 943, 'nod': 6173, 'lindsey': 5279, 'request': 7430, 'devotion': 2553, 'assortment': 693, 'skinny': 8192, 'mobile': 5865, 'fenway': 3411, 'appreciating': 589, 'anchorman': 479, 'backstage': 815, 'shell': 8033, 'goldwyn': 3913, 'tobias': 9069, 'preview': 6934, 'fugitive': 3700, 'snitch': 8266, 'cahill': 1376, 'insights': 4682, 'psyche': 7052, 'hastily': 4155, 'estate': 3131, 'pilots': 6712, 'beginners': 951, 'sparkle': 8358, 'theft': 8952, 'flashy': 3515, 'suzette': 8772, '20s': 109, 'apathy': 563, 'explodes': 3248, 'welcomed': 9746, 'bearable': 911, 'roots': 7644, 'esther': 3133, 'evans': 3147, 'walker': 9648, 'penny': 6618, 'baddies': 820, 'meandering': 5661, 'relive': 7361, 'drifting': 2822, 'suggestive': 8688, 'melancholy': 5699, 'hay': 4172, 'determination': 2533, 'informs': 4651, 'invested': 4791, 'byron': 1368, 'strummer': 8611, 'limitations': 5273, 'ceiling': 1534, 'doe': 2724, 'intends': 4732, 'shocker': 8059, 'oberon': 6251, 'harbor': 4131, 'avoided': 780, 'artemisia': 643, 'gackt': 3726, 'frequent': 3669, 'jess': 4895, 'franco': 3649, 'sales': 7731, 'madman': 5465, 'gruner': 4029, 'lurking': 5434, 'tourists': 9130, 'wan': 9658, 'creed': 2171, 'ludlow': 5415, 'jud': 4944, 'crypt': 2225, 'axe': 799, 'succession': 8668, 'congratulations': 1966, 'dipping': 2609, 'preminger': 6900, 'dana': 2291, 'quotable': 7139, 'dixon': 2712, 'distinction': 2681, 'imprisoned': 4562, 'doodlebops': 2752, 'oppressed': 6378, 'censorship': 1547, 'voters': 9623, 'collora': 1826, 'hearn': 4193, 'kent': 5008, 'cheezy': 1626, 'lois': 5340, 'teaming': 8872, 'bug': 1306, 'dreamworks': 2813, 'ajay': 361, 'enchanting': 3028, 'herein': 4248, 'bronte': 1272, 'carlton': 1467, 'browne': 1283, 'amphibulos': 459, 'dirt': 2621, 'gaillardia': 3732, 'height': 4215, 'throne': 9015, 'addressed': 257, 'mice': 5773, 'jaq': 4872, 'stepsisters': 8517, 'marred': 5568, 'lucifer': 5405, 'didnt': 2571, 'unthoughtful': 9427, 'sexist': 7976, 'helluva': 4229, 'culprit': 2234, 'assassinate': 674, 'sentinel': 7932, 'subplots': 8650, 'vincenzo': 9574, 'risking': 7563, 'occurring': 6289, 'tourist': 9129, 'egypt': 2959, 'covering': 2128, 'mastered': 5600, 'formulaic': 3614, 'vida': 9545, 'portugal': 6831, 'hack': 4065, 'throwaway': 9019, 'solitude': 8294, 'talkie': 8833, 'marx': 5585, 'feisty': 3399, 'items': 4844, 'pyramid': 7111, 'odyssey': 6299, 'classy': 1736, 'kaakha': 4977, 'observing': 6269, 'sleeper': 8211, 'cheers': 1623, 'edel': 2928, 'anchored': 478, 'zoe': 9994, 'interchangeable': 4746, 'convenient': 2040, 'drum': 2843, 'tingler': 9056, 'dante': 2308, 'boots': 1167, 'distraction': 2690, 'tripe': 9235, 'chopper': 1671, 'sunset': 8709, 'gifted': 3826, '345': 126, 'ond': 6351, 'ej': 2968, 'hanka': 4115, 'jakub': 4859, 'shockingly': 8061, 'paz': 6597, 'vega': 9506, 'detour': 2536, 'yakuza': 9952, 'bandwagon': 843, 'user': 9463, 'mcgrath': 5650, 'antagonist': 533, 'trackers': 9143, 'journeymen': 4936, 'pickford': 6693, 'reflections': 7311, 'silverman': 8133, 'cambodia': 1393, 'trafficking': 9152, '85': 150, 'yikes': 9969, 'skid': 8185, '48': 134, 'cowardly': 2130, 'commits': 1879, 'juice': 4954, 'fiend': 3432, 'hugo': 4413, 'ss': 8437, 'contemporaries': 2008, 'figuring': 3447, 'teresa': 8914, 'rajinikanth': 7172, 'glaring': 3859, 'inconsistencies': 4597, 'dbd': 2343, 'mesmerizing': 5753, 'nite': 6166, 'pursuit': 7101, 'pei': 6611, 'triumphant': 9243, 'dietrichson': 2577, 'neff': 6103, 'trips': 9239, 'prop': 7017, 'stepmother': 8514, 'inexplicable': 4635, 'untalented': 9425, 'hallucinations': 4090, 'hallucination': 4089, '43': 132, 'whore': 9803, 'rotting': 7653, 'scurry': 7850, 'divided': 2705, 'yorkers': 9972, 'lamb': 5107, 'whims': 9787, 'cassie': 1500, 'dreamed': 2811, 'retirement': 7484, 'dynamic': 2892, 'plummer': 6771, 'helsing': 4239, 'vault': 9503, 'odin': 6298, 'berserkers': 1009, 'scorned': 7820, 'boar': 1124, 'barek': 857, 'ala': 366, 'funhouse': 3709, 'haphazard': 4119, 'concludes': 1942, 'astonished': 704, 'seed': 7882, 'intruder': 4782, 'wheelchair': 9773, 'invincible': 4797, 'stalked': 8449, 'lana': 5113, 'microphone': 5779, 'marquez': 5567, 'rub': 7668, 'baloo': 835, 'paradise': 6522, 'talespin': 8830, 'peril': 6638, 'latino': 5142, 'rookie': 7637, 'maze': 5637, 'astronauts': 710, 'spaceships': 8349, 'planes': 6739, 'blondes': 1108, 'sidekicks': 8112, 'packaging': 6480, 'childlike': 1647, 'levinson': 5233, 'soundstage': 8337, 'godmother': 3895, 'robotic': 7596, 'obligated': 6256, 'schneebaum': 7805, 'gimmick': 3837, 'montgomery': 5907, 'distrust': 2694, 'illusions': 4510, 'speeding': 8378, 'clovis': 1783, 'discs': 2647, 'denouement': 2454, 'softcore': 8283, 'kruis': 5081, 'gabe': 3724, 'abby': 162, 'chelsea': 1628, 'gigi': 3831, 'monique': 5892, 'patch': 6569, 'shantytown': 8009, 'fledged': 3524, 'visconti': 9588, 'stray': 8574, 'bicycle': 1036, 'mummy': 5998, 'brainer': 1214, 'melbourne': 5700, 'queens': 7123, 'whip': 9791, 'madison': 5463, 'stereotype': 8519, 'cain': 1377, 'incidents': 4582, 'famed': 3331, 'anupam': 547, 'crowning': 2210, 'metaphysical': 5763, 'upa': 9439, 'fronts': 3691, 'vomit': 9618, 'cringeworthy': 2184, 'hostage': 4383, 'aspires': 670, 'manhood': 5514, 'hines': 4290, 'monologue': 5898, '1890': 17, 'catastrophe': 1509, 'conceit': 1927, 'maturity': 5626, 'menzies': 5736, 'daft': 2276, 'devgan': 2545, 'hopeless': 4363, 'mulholland': 5992, '1915': 21, 'unresolved': 9413, 'bach': 806, 'solvang': 8299, 'lamm': 5110, 'ringo': 7550, 'beau': 922, 'keller': 5001, 'tub': 9273, 'scarf': 7790, 'tibet': 9030, 'harrer': 4142, 'grabbed': 3947, 'updates': 9445, 'organ': 6397, 'margin': 5544, 'patekar': 6570, 'uncut': 9335, 'sexploitation': 7977, 'discoveries': 2642, 'demonic': 2441, 'wrongly': 9938, 'buffalo': 1304, 'atari': 714, 'lured': 5433, 'glow': 3882, 'trendy': 9213, 'nymphs': 6249, 'sleeve': 8215, 'portuguese': 6832, 'frontier': 3690, 'geraldine': 3799, 'robber': 7584, 'bike': 1041, 'macintosh': 5453, 'potts': 6856, 'tremors': 9211, 'vick': 9538, 'liev': 5246, 'gis': 3848, 'rinaldi': 7547, 'cosimo': 2093, 'grabbing': 3948, 'contend': 2011, 'jang': 4866, 'meetings': 5692, 'gojitmal': 3904, 'jessie': 4898, 'bacall': 805, 'gorshin': 3934, 'newmar': 6136, 'amsterdam': 462, 'calculated': 1381, 'sherman': 8041, 'belonged': 984, 'dummy': 2868, 'sensibility': 7919, 'behaving': 959, 'schumacher': 7808, 'derision': 2487, 'sacrificing': 7711, 'simira': 8138, 'ra': 7142, 'tet': 8933, 'numar': 6235, 'egyptian': 2960, 'macek': 5449, 'jumbo': 4960, 'mecha': 5673, 'robotech': 7595, 'clouds': 1782, 'linked': 5287, 'sting': 8537, 'aim': 348, 'spells': 8380, 'tourneur': 9131, 'doris': 2761, 'dump': 2869, 'lindy': 5280, 'dingo': 2603, 'baritone': 860, 'deliverance': 2425, 'biko': 1044, 'intentioned': 4740, 'partners': 6550, 'lena': 5202, 'typing': 9309, 'medved': 5689, 'absorbed': 181, 'glenda': 3864, 'cattle': 1521, 'amusingly': 467, 'zizek': 9992, 'freudian': 3674, 'biopic': 1058, 'wee': 9735, 'illustration': 4513, 'dogma': 2728, 'brighten': 1253, 'perdition': 6625, 'receiving': 7266, 'giggle': 3830, 'sparing': 8355, 'standup': 8462, 'ida': 4474, 'lupino': 5431, 'rewarded': 7514, 'beaver': 926, 'crusade': 2219, 'somethings': 8308, 'hamburg': 4093, 'misguided': 5838, 'hallam': 4086, 'werewolves': 9758, 'cathy': 1519, 'tennis': 8909, 'diversity': 2703, 'sybil': 8792, 'danning': 2306, 'dee': 2388, 'provo': 7046, 'burgade': 1328, 'convicts': 2056, 'horny': 4369, 'whale': 9767, 'owners': 6469, 'cody': 1802, 'meantime': 5668, 'mopsy': 5922, 'ruins': 7680, 'judi': 4951, 'cylons': 2267, 'battlestar': 898, 'galactica': 3736, 'colonized': 1829, 'scenic': 7798, 'torrence': 9112, 'olive': 6337, 'molested': 5880, 'kibbutz': 5016, 'glib': 3866, 'kristel': 5078, 'repulsion': 7427, 'pullman': 7073, 'trina': 9231, 'apathetic': 562, 'carax': 1446, 'eskimo': 3118, 'mala': 5498, 'tasteful': 8857, 'sonic': 8317, 'munchies': 5999, 'ghoulies': 3818, 'graceful': 3952, 'lacey': 5092, 'miou': 5822, 'assumptions': 698, 'distorted': 2686, 'yadda': 9951, 'cultures': 2239, 'owl': 6465, 'mira': 5823, 'prodigy': 6972, 'carface': 1459, 'arcs': 606, 'analog': 471, 'controller': 2036, 'sammi': 7740, 'sabretooth': 7707, 'specials': 8368, 'boesman': 1136, 'bassett': 885, '66': 141, 'instrument': 4711, 'drool': 2832, 'macarthur': 5447, 'sargent': 7760, 'arrows': 641, 'rational': 7213, 'tycoon': 9302, 'nods': 6174, 'etcetera': 3136, 'lemon': 5201, 'snipe': 8262, 'helicopters': 4225, 'puerto': 7067, 'auntie': 758, 'disrespect': 2675, 'margret': 5546, 'oft': 6323, 'gifts': 3827, 'sleepaway': 8210, 'senile': 7912, 'luciano': 5403, 'venantino': 9513, 'venantini': 9512, 'implied': 4547, 'noon': 6190, 'cynic': 2268, 'norris': 6198, 'forbes': 3587, 'fled': 3523, 'employ': 3022, 'denholm': 2447, 'butterflies': 1360, 'roo': 7634, 'digging': 2588, 'risks': 7564, 'bolan': 1142, 'soylent': 8346, 'batmobile': 893, 'waggoner': 9632, 'alekos': 376, 'heartily': 4200, 'homer': 4340, 'mining': 5813, 'coal': 1796, 'tomatoes': 9082, 'mcnealy': 5655, 'beaches': 906, 'rockstar': 7605, 'ignores': 4498, 'thailand': 8939, 'samuel': 7741, 'moronie': 5942, 'bachelor': 807, 'lochlyn': 5329, 'kenner': 5006, 'yoshida': 9973, 'badness': 822, 'commender': 1870, 'xica': 9947, 'curses': 2251, 'mathieu': 5616, 'delirious': 2423, 'chávez': 1698, 'orca': 6388, 'monopoly': 5899, 'dudikoff': 2858, 'nope': 6191, 'deanna': 2357, 'mama': 5505, 'knightly': 5057, 'valette': 9481, 'maléfique': 5504, 'oceans': 6292, 'istanbul': 4838, 'trotta': 9252, 'holland': 4329, 'hunchback': 4429, 'soha': 8284, 'carrère': 1486, 'allure': 405, 'haliday': 4084, 'moonlighting': 5916, 'suzanne': 8771, 'vollins': 9615, 'greats': 3991, 'kells': 5002, 'maslin': 5592, 'marcie': 5540, 'hundstage': 4432, 'mcintyre': 5652, 'haim': 4075, 'bernie': 1007, 'fuqua': 3713, 'huggins': 4410, 'huggaland': 4408, 'hugsy': 4415, 'hodgepodge': 4319, 'mcdoakes': 5647, 'fontaine': 3575, 'calson': 1390, 'morris': 5945, 'krause': 5076, 'combs': 1847, 'atheists': 715, 'pavarotti': 6590, 'seberg': 7865, 'inconsistent': 4598, 'reuben': 7490, 'quigley': 7133, 'aura': 759, 'ardala': 607, 'eglantine': 2956, 'theo': 8962, 'overcomes': 6450, 'hermann': 4249, 'fassbinder': 3362, 'shakti': 8000, 'nandini': 6056, 'augusta': 755, 'snob': 8268, 'claw': 1740, 'zomcon': 9997, 'morales': 5925, 'muller': 5993, 'wheezer': 9774, '31': 125, 'germaine': 3801, 'fanfan': 3339, 'adeline': 261, 'torrance': 9111, 'melvin': 5710, 'purvis': 7102, 'erroll': 3111, 'belasco': 970, 'moby': 5866, 'ahab': 342, 'kickboxing': 5018, 'trojan': 9248, 'ajax': 360, 'notre': 6221, 'frollo': 3686, 'nastasya': 6065}


Bow train reduced vectors
[[0 0 0 ... 0 0 0]
 [0 0 0 ... 0 0 0]
 [0 0 0 ... 0 0 0]
 ...
 [0 0 0 ... 0 0 0]
 [0 0 0 ... 0 0 0]
 [0 0 0 ... 0 0 0]]


BoW validation shape
(2500, 10000)
/usr/local/lib/python3.7/dist-packages/sklearn/utils/deprecation.py:87: FutureWarning: Function get_feature_names is deprecated; get_feature_names is deprecated in 1.0 and will be removed in 1.2. Please use get_feature_names_out instead.
  warnings.warn(msg, category=FutureWarning)

On va utiliser le MultinomialNB de scikit-learn, une implémentation du modèle Bayésien naïf. Ici, l'hypothèse naïve est que les différentes variables (mots) d'une critique sont indépendantes entre elles.

In [14]:
from sklearn.naive_bayes import MultinomialNB
In [15]:
# Create the model, train it and do the prediction 

# Build the model 
clf_multi_NB = MultinomialNB()
clf_multi_NB.fit(bow_train_splt, train_labels_splt)

predictions = clf_multi_NB.predict(bow_val_splt)

print("Predictions")
predictions
Predictions
Out[15]:
array([1, 1, 1, ..., 1, 1, 1])
In [16]:
import pandas as pd
pd.DataFrame(predictions).value_counts()
Out[16]:
1    2443
0      57
dtype: int64
In [17]:
from sklearn.metrics import confusion_matrix, ConfusionMatrixDisplay, classification_report
In [18]:
# Show the results in a readable format
print("---- Classification report ----")

report_classification = classification_report(val_labels, predictions, target_names=["positif", "negatif"], output_dict=True)

print(classification_report(val_labels, predictions, target_names=["positif", "negatif"]))

cm = confusion_matrix(val_labels, predictions)
cm_disp = ConfusionMatrixDisplay(cm, display_labels=["positif", "negatif"])

cm_disp.plot()
plt.show()
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.39      0.02      0.03      1267
     negatif       0.49      0.97      0.65      1233

    accuracy                           0.49      2500
   macro avg       0.44      0.49      0.34      2500
weighted avg       0.44      0.49      0.34      2500

On peut jeter un oeil aux features construites par le vectorizer. Comment pourrait-on les améliorer ?

In [ ]:
print(vectorizer.get_feature_names()[:100])
['avenue', 'boulevard', 'city', 'down', 'ran', 'the', 'walk', 'walked']
/usr/local/lib/python3.7/dist-packages/sklearn/utils/deprecation.py:87: FutureWarning: Function get_feature_names is deprecated; get_feature_names is deprecated in 1.0 and will be removed in 1.2. Please use get_feature_names_out instead.
  warnings.warn(msg, category=FutureWarning)

Améliorer les représentations BoW

Les arguments du vectorizer vont nous permettre d'agir facilement sur la façon dont les données sont représentées. On peut donc chercher à améliorer nos représentations Bag-of-words:

Ne pas prendre en compte les mots trop fréquents:

On peut utiliser l'option max_df=1.0 pour modifier la quantité de mots pris en compte.

Essayer différentes granularités:

Plutôt que de simplement compter les mots, on peut compter les séquences de mots - de taille limitée, bien sur. On appelle une séquence de $n$ mots un $n$-gram: essayons d'utiliser les 2 et 3-grams (bi- et trigrams). On peut aussi tenter d'utiliser les séquences de caractères à la place de séquences de mots.

On s'intéressera aux options analyzer='word' et ngram_range=(1, 2) que l'on changera pour modifier la granularité.

Encore une fois: avoir recours à ces features aura probablement plus d'impact si la quantité de données d'entraînement à notre disposition est limitée !

Pour accélérer les expériences, utilisez l'outil Pipeline de scikit-learn.

In [19]:
from sklearn.pipeline import Pipeline

On fait varier les paramètres suivants :

  • max_df = [0, 0.2, 0.5, 0.7, 0.9, 1]
  • ngram_range = [(1,1), (1,2), (1,3),(2,2), (2,3), (3,3)]
  • analyzer = ["word", "char", "char_wb"]

Le paramètre max_features reste fixé à 10 000

In [ ]:
# Create a pipeline for each configuration
models = []

max_df = [0.2, 0.5, 0.7, 0.9]
ngram_range = [(1,1), (1,2), (1,3),(2,2), (2,3), (3,3)]
analyzer = ["word", "char", "char_wb"]

f1_score_list = list()

for i in analyzer:
  models_max_df = []
  for j in max_df:
    print(j)
    models_ngram = []
    for k in ngram_range:
      print(k)
      pipe = Pipeline([
                    ('vec', CountVectorizer(max_features=10000, analyzer=i, max_df=j, ngram_range=k)),
                    ('clf', MultinomialNB())
                    ])
      pipe.fit(train_texts_splt, train_labels_splt)
      models_ngram.append(pipe)

    models_max_df.append(models_ngram)
  models.append(models_max_df)

for n, i in enumerate(analyzer):
  for m, j in enumerate(max_df):
    for o, k in enumerate(ngram_range):
      print('Pipe with {analyzer=' + i + ", max_df=" + str(j) + ", ngram_range=" + str(k) + "}")
      preds = models[n][m][o].predict(val_texts)

      print("---- Classification report ----")
      report_classification = classification_report(val_labels, preds, target_names=["positif", "negatif"], output_dict=True)
      print(classification_report(val_labels, preds, target_names=["positif", "negatif"]))

      f1_score = report_classification['macro avg']['f1-score']
      f1_score_list.append(f1_score)

      cm = confusion_matrix(val_labels, preds)
      cm_disp = ConfusionMatrixDisplay(cm, display_labels=["positif", "negatif"])

      cm_disp.plot()
      plt.show() 
      print("\n\n----------------------------------------------------\n\n")

print("F1-Score")
print(f1_score_list)
0.2
(1, 1)
(1, 2)
(1, 3)
(2, 2)
(2, 3)
(3, 3)
0.5
(1, 1)
(1, 2)
(1, 3)
(2, 2)
(2, 3)
(3, 3)
0.7
(1, 1)
(1, 2)
(1, 3)
(2, 2)
(2, 3)
(3, 3)
0.9
(1, 1)
(1, 2)
(1, 3)
(2, 2)
(2, 3)
(3, 3)
0.2
(1, 1)
(1, 2)
(1, 3)
(2, 2)
(2, 3)
(3, 3)
0.5
(1, 1)
(1, 2)
(1, 3)
(2, 2)
(2, 3)
(3, 3)
0.7
(1, 1)
(1, 2)
(1, 3)
(2, 2)
(2, 3)
(3, 3)
0.9
(1, 1)
(1, 2)
(1, 3)
(2, 2)
(2, 3)
(3, 3)
0.2
(1, 1)
(1, 2)
(1, 3)
(2, 2)
(2, 3)
(3, 3)
0.5
(1, 1)
(1, 2)
(1, 3)
(2, 2)
(2, 3)
(3, 3)
0.7
(1, 1)
(1, 2)
(1, 3)
(2, 2)
(2, 3)
(3, 3)
0.9
(1, 1)
(1, 2)
(1, 3)
(2, 2)
(2, 3)
(3, 3)
Pipe with {analyzer=word, max_df=0.2, ngram_range=(1, 1)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.83      0.87      0.85      1250
     negatif       0.86      0.82      0.84      1250

    accuracy                           0.85      2500
   macro avg       0.85      0.85      0.85      2500
weighted avg       0.85      0.85      0.85      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.2, ngram_range=(1, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.87      0.86      0.87      1250
     negatif       0.86      0.87      0.87      1250

    accuracy                           0.87      2500
   macro avg       0.87      0.87      0.87      2500
weighted avg       0.87      0.87      0.87      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.2, ngram_range=(1, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.87      0.85      0.86      1250
     negatif       0.86      0.88      0.87      1250

    accuracy                           0.86      2500
   macro avg       0.86      0.86      0.86      2500
weighted avg       0.86      0.86      0.86      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.2, ngram_range=(2, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.86      0.83      0.84      1250
     negatif       0.84      0.86      0.85      1250

    accuracy                           0.85      2500
   macro avg       0.85      0.85      0.85      2500
weighted avg       0.85      0.85      0.85      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.2, ngram_range=(2, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.86      0.82      0.84      1250
     negatif       0.83      0.86      0.84      1250

    accuracy                           0.84      2500
   macro avg       0.84      0.84      0.84      2500
weighted avg       0.84      0.84      0.84      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.2, ngram_range=(3, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.80      0.79      0.79      1250
     negatif       0.79      0.80      0.80      1250

    accuracy                           0.79      2500
   macro avg       0.79      0.79      0.79      2500
weighted avg       0.79      0.79      0.79      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.5, ngram_range=(1, 1)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.82      0.87      0.85      1250
     negatif       0.87      0.81      0.84      1250

    accuracy                           0.84      2500
   macro avg       0.84      0.84      0.84      2500
weighted avg       0.84      0.84      0.84      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.5, ngram_range=(1, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.86      0.86      0.86      1250
     negatif       0.86      0.86      0.86      1250

    accuracy                           0.86      2500
   macro avg       0.86      0.86      0.86      2500
weighted avg       0.86      0.86      0.86      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.5, ngram_range=(1, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.86      0.85      0.86      1250
     negatif       0.85      0.86      0.86      1250

    accuracy                           0.86      2500
   macro avg       0.86      0.86      0.86      2500
weighted avg       0.86      0.86      0.86      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.5, ngram_range=(2, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.85      0.83      0.84      1250
     negatif       0.84      0.86      0.85      1250

    accuracy                           0.84      2500
   macro avg       0.85      0.84      0.84      2500
weighted avg       0.85      0.84      0.84      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.5, ngram_range=(2, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.85      0.82      0.84      1250
     negatif       0.83      0.86      0.84      1250

    accuracy                           0.84      2500
   macro avg       0.84      0.84      0.84      2500
weighted avg       0.84      0.84      0.84      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.5, ngram_range=(3, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.80      0.78      0.79      1250
     negatif       0.79      0.80      0.80      1250

    accuracy                           0.79      2500
   macro avg       0.79      0.79      0.79      2500
weighted avg       0.79      0.79      0.79      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.7, ngram_range=(1, 1)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.81      0.87      0.84      1250
     negatif       0.86      0.80      0.83      1250

    accuracy                           0.84      2500
   macro avg       0.84      0.84      0.83      2500
weighted avg       0.84      0.84      0.83      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.7, ngram_range=(1, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.85      0.86      0.85      1250
     negatif       0.86      0.85      0.85      1250

    accuracy                           0.85      2500
   macro avg       0.85      0.85      0.85      2500
weighted avg       0.85      0.85      0.85      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.7, ngram_range=(1, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.86      0.85      0.85      1250
     negatif       0.85      0.86      0.86      1250

    accuracy                           0.85      2500
   macro avg       0.85      0.85      0.85      2500
weighted avg       0.85      0.85      0.85      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.7, ngram_range=(2, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.85      0.83      0.84      1250
     negatif       0.84      0.86      0.85      1250

    accuracy                           0.85      2500
   macro avg       0.85      0.85      0.85      2500
weighted avg       0.85      0.85      0.85      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.7, ngram_range=(2, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.85      0.82      0.84      1250
     negatif       0.83      0.86      0.84      1250

    accuracy                           0.84      2500
   macro avg       0.84      0.84      0.84      2500
weighted avg       0.84      0.84      0.84      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.7, ngram_range=(3, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.80      0.78      0.79      1250
     negatif       0.79      0.80      0.80      1250

    accuracy                           0.79      2500
   macro avg       0.79      0.79      0.79      2500
weighted avg       0.79      0.79      0.79      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.9, ngram_range=(1, 1)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.81      0.87      0.84      1250
     negatif       0.86      0.79      0.83      1250

    accuracy                           0.83      2500
   macro avg       0.83      0.83      0.83      2500
weighted avg       0.83      0.83      0.83      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.9, ngram_range=(1, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.85      0.86      0.85      1250
     negatif       0.85      0.85      0.85      1250

    accuracy                           0.85      2500
   macro avg       0.85      0.85      0.85      2500
weighted avg       0.85      0.85      0.85      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.9, ngram_range=(1, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.85      0.85      0.85      1250
     negatif       0.85      0.86      0.85      1250

    accuracy                           0.85      2500
   macro avg       0.85      0.85      0.85      2500
weighted avg       0.85      0.85      0.85      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.9, ngram_range=(2, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.85      0.83      0.84      1250
     negatif       0.84      0.86      0.85      1250

    accuracy                           0.85      2500
   macro avg       0.85      0.85      0.85      2500
weighted avg       0.85      0.85      0.85      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.9, ngram_range=(2, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.85      0.82      0.84      1250
     negatif       0.83      0.86      0.84      1250

    accuracy                           0.84      2500
   macro avg       0.84      0.84      0.84      2500
weighted avg       0.84      0.84      0.84      2500


----------------------------------------------------


Pipe with {analyzer=word, max_df=0.9, ngram_range=(3, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.80      0.78      0.79      1250
     negatif       0.79      0.80      0.80      1250

    accuracy                           0.79      2500
   macro avg       0.79      0.79      0.79      2500
weighted avg       0.79      0.79      0.79      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.2, ngram_range=(1, 1)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.54      0.75      0.63      1250
     negatif       0.59      0.36      0.45      1250

    accuracy                           0.56      2500
   macro avg       0.57      0.56      0.54      2500
weighted avg       0.57      0.56      0.54      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.2, ngram_range=(1, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.69      0.69      0.69      1250
     negatif       0.69      0.68      0.69      1250

    accuracy                           0.69      2500
   macro avg       0.69      0.69      0.69      2500
weighted avg       0.69      0.69      0.69      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.2, ngram_range=(1, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.79      0.81      0.80      1250
     negatif       0.81      0.78      0.79      1250

    accuracy                           0.80      2500
   macro avg       0.80      0.80      0.80      2500
weighted avg       0.80      0.80      0.80      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.2, ngram_range=(2, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.69      0.68      0.69      1250
     negatif       0.69      0.70      0.69      1250

    accuracy                           0.69      2500
   macro avg       0.69      0.69      0.69      2500
weighted avg       0.69      0.69      0.69      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.2, ngram_range=(2, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.78      0.81      0.80      1250
     negatif       0.80      0.78      0.79      1250

    accuracy                           0.79      2500
   macro avg       0.79      0.79      0.79      2500
weighted avg       0.79      0.79      0.79      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.2, ngram_range=(3, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.79      0.82      0.80      1250
     negatif       0.81      0.78      0.80      1250

    accuracy                           0.80      2500
   macro avg       0.80      0.80      0.80      2500
weighted avg       0.80      0.80      0.80      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.5, ngram_range=(1, 1)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.58      0.57      0.57      1250
     negatif       0.58      0.59      0.58      1250

    accuracy                           0.58      2500
   macro avg       0.58      0.58      0.58      2500
weighted avg       0.58      0.58      0.58      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.5, ngram_range=(1, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.71      0.70      0.71      1250
     negatif       0.70      0.72      0.71      1250

    accuracy                           0.71      2500
   macro avg       0.71      0.71      0.71      2500
weighted avg       0.71      0.71      0.71      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.5, ngram_range=(1, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.78      0.81      0.79      1250
     negatif       0.80      0.77      0.78      1250

    accuracy                           0.79      2500
   macro avg       0.79      0.79      0.79      2500
weighted avg       0.79      0.79      0.79      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.5, ngram_range=(2, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.72      0.72      0.72      1250
     negatif       0.72      0.71      0.72      1250

    accuracy                           0.72      2500
   macro avg       0.72      0.72      0.72      2500
weighted avg       0.72      0.72      0.72      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.5, ngram_range=(2, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.78      0.81      0.79      1250
     negatif       0.80      0.77      0.78      1250

    accuracy                           0.79      2500
   macro avg       0.79      0.79      0.79      2500
weighted avg       0.79      0.79      0.79      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.5, ngram_range=(3, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.78      0.82      0.80      1250
     negatif       0.81      0.77      0.79      1250

    accuracy                           0.80      2500
   macro avg       0.80      0.80      0.80      2500
weighted avg       0.80      0.80      0.80      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.7, ngram_range=(1, 1)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.58      0.56      0.57      1250
     negatif       0.58      0.59      0.59      1250

    accuracy                           0.58      2500
   macro avg       0.58      0.58      0.58      2500
weighted avg       0.58      0.58      0.58      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.7, ngram_range=(1, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.70      0.70      0.70      1250
     negatif       0.70      0.70      0.70      1250

    accuracy                           0.70      2500
   macro avg       0.70      0.70      0.70      2500
weighted avg       0.70      0.70      0.70      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.7, ngram_range=(1, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.75      0.80      0.78      1250
     negatif       0.79      0.74      0.76      1250

    accuracy                           0.77      2500
   macro avg       0.77      0.77      0.77      2500
weighted avg       0.77      0.77      0.77      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.7, ngram_range=(2, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.71      0.72      0.71      1250
     negatif       0.72      0.70      0.71      1250

    accuracy                           0.71      2500
   macro avg       0.71      0.71      0.71      2500
weighted avg       0.71      0.71      0.71      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.7, ngram_range=(2, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.75      0.80      0.78      1250
     negatif       0.79      0.74      0.76      1250

    accuracy                           0.77      2500
   macro avg       0.77      0.77      0.77      2500
weighted avg       0.77      0.77      0.77      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.7, ngram_range=(3, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.76      0.82      0.79      1250
     negatif       0.80      0.74      0.77      1250

    accuracy                           0.78      2500
   macro avg       0.78      0.78      0.78      2500
weighted avg       0.78      0.78      0.78      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.9, ngram_range=(1, 1)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.58      0.56      0.57      1250
     negatif       0.57      0.58      0.58      1250

    accuracy                           0.57      2500
   macro avg       0.57      0.57      0.57      2500
weighted avg       0.57      0.57      0.57      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.9, ngram_range=(1, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.69      0.71      0.70      1250
     negatif       0.70      0.68      0.69      1250

    accuracy                           0.70      2500
   macro avg       0.70      0.70      0.70      2500
weighted avg       0.70      0.70      0.70      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.9, ngram_range=(1, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.73      0.80      0.76      1250
     negatif       0.78      0.71      0.74      1250

    accuracy                           0.75      2500
   macro avg       0.76      0.75      0.75      2500
weighted avg       0.76      0.75      0.75      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.9, ngram_range=(2, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.69      0.72      0.71      1250
     negatif       0.71      0.67      0.69      1250

    accuracy                           0.70      2500
   macro avg       0.70      0.70      0.70      2500
weighted avg       0.70      0.70      0.70      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.9, ngram_range=(2, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.74      0.80      0.77      1250
     negatif       0.78      0.72      0.75      1250

    accuracy                           0.76      2500
   macro avg       0.76      0.76      0.76      2500
weighted avg       0.76      0.76      0.76      2500


----------------------------------------------------


Pipe with {analyzer=char, max_df=0.9, ngram_range=(3, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.74      0.81      0.77      1250
     negatif       0.79      0.72      0.75      1250

    accuracy                           0.76      2500
   macro avg       0.77      0.76      0.76      2500
weighted avg       0.77      0.76      0.76      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.2, ngram_range=(1, 1)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.54      0.75      0.63      1250
     negatif       0.59      0.36      0.45      1250

    accuracy                           0.56      2500
   macro avg       0.57      0.56      0.54      2500
weighted avg       0.57      0.56      0.54      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.2, ngram_range=(1, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.69      0.69      0.69      1250
     negatif       0.69      0.69      0.69      1250

    accuracy                           0.69      2500
   macro avg       0.69      0.69      0.69      2500
weighted avg       0.69      0.69      0.69      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.2, ngram_range=(1, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.78      0.81      0.80      1250
     negatif       0.81      0.78      0.79      1250

    accuracy                           0.79      2500
   macro avg       0.79      0.79      0.79      2500
weighted avg       0.79      0.79      0.79      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.2, ngram_range=(2, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.69      0.68      0.69      1250
     negatif       0.69      0.70      0.69      1250

    accuracy                           0.69      2500
   macro avg       0.69      0.69      0.69      2500
weighted avg       0.69      0.69      0.69      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.2, ngram_range=(2, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.78      0.81      0.80      1250
     negatif       0.80      0.77      0.79      1250

    accuracy                           0.79      2500
   macro avg       0.79      0.79      0.79      2500
weighted avg       0.79      0.79      0.79      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.2, ngram_range=(3, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.79      0.82      0.80      1250
     negatif       0.81      0.78      0.79      1250

    accuracy                           0.80      2500
   macro avg       0.80      0.80      0.80      2500
weighted avg       0.80      0.80      0.80      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.5, ngram_range=(1, 1)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.58      0.57      0.57      1250
     negatif       0.58      0.59      0.58      1250

    accuracy                           0.58      2500
   macro avg       0.58      0.58      0.58      2500
weighted avg       0.58      0.58      0.58      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.5, ngram_range=(1, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.71      0.70      0.71      1250
     negatif       0.70      0.72      0.71      1250

    accuracy                           0.71      2500
   macro avg       0.71      0.71      0.71      2500
weighted avg       0.71      0.71      0.71      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.5, ngram_range=(1, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.77      0.81      0.79      1250
     negatif       0.80      0.76      0.78      1250

    accuracy                           0.79      2500
   macro avg       0.79      0.79      0.79      2500
weighted avg       0.79      0.79      0.79      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.5, ngram_range=(2, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.71      0.72      0.72      1250
     negatif       0.72      0.71      0.71      1250

    accuracy                           0.72      2500
   macro avg       0.72      0.72      0.72      2500
weighted avg       0.72      0.72      0.72      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.5, ngram_range=(2, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.77      0.82      0.79      1250
     negatif       0.80      0.76      0.78      1250

    accuracy                           0.79      2500
   macro avg       0.79      0.79      0.79      2500
weighted avg       0.79      0.79      0.79      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.5, ngram_range=(3, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.78      0.82      0.80      1250
     negatif       0.81      0.77      0.79      1250

    accuracy                           0.80      2500
   macro avg       0.80      0.80      0.80      2500
weighted avg       0.80      0.80      0.80      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.7, ngram_range=(1, 1)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.58      0.56      0.57      1250
     negatif       0.58      0.59      0.59      1250

    accuracy                           0.58      2500
   macro avg       0.58      0.58      0.58      2500
weighted avg       0.58      0.58      0.58      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.7, ngram_range=(1, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.70      0.70      0.70      1250
     negatif       0.70      0.70      0.70      1250

    accuracy                           0.70      2500
   macro avg       0.70      0.70      0.70      2500
weighted avg       0.70      0.70      0.70      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.7, ngram_range=(1, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.76      0.80      0.78      1250
     negatif       0.79      0.74      0.76      1250

    accuracy                           0.77      2500
   macro avg       0.77      0.77      0.77      2500
weighted avg       0.77      0.77      0.77      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.7, ngram_range=(2, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.71      0.72      0.71      1250
     negatif       0.72      0.70      0.71      1250

    accuracy                           0.71      2500
   macro avg       0.71      0.71      0.71      2500
weighted avg       0.71      0.71      0.71      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.7, ngram_range=(2, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.75      0.80      0.78      1250
     negatif       0.79      0.74      0.76      1250

    accuracy                           0.77      2500
   macro avg       0.77      0.77      0.77      2500
weighted avg       0.77      0.77      0.77      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.7, ngram_range=(3, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.76      0.82      0.79      1250
     negatif       0.81      0.75      0.77      1250

    accuracy                           0.78      2500
   macro avg       0.78      0.78      0.78      2500
weighted avg       0.78      0.78      0.78      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.9, ngram_range=(1, 1)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.58      0.56      0.57      1250
     negatif       0.57      0.58      0.58      1250

    accuracy                           0.57      2500
   macro avg       0.57      0.57      0.57      2500
weighted avg       0.57      0.57      0.57      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.9, ngram_range=(1, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.69      0.71      0.70      1250
     negatif       0.70      0.68      0.69      1250

    accuracy                           0.70      2500
   macro avg       0.70      0.70      0.70      2500
weighted avg       0.70      0.70      0.70      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.9, ngram_range=(1, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.74      0.80      0.77      1250
     negatif       0.78      0.72      0.75      1250

    accuracy                           0.76      2500
   macro avg       0.76      0.76      0.76      2500
weighted avg       0.76      0.76      0.76      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.9, ngram_range=(2, 2)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.69      0.72      0.71      1250
     negatif       0.71      0.68      0.69      1250

    accuracy                           0.70      2500
   macro avg       0.70      0.70      0.70      2500
weighted avg       0.70      0.70      0.70      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.9, ngram_range=(2, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.74      0.80      0.77      1250
     negatif       0.78      0.72      0.75      1250

    accuracy                           0.76      2500
   macro avg       0.76      0.76      0.76      2500
weighted avg       0.76      0.76      0.76      2500


----------------------------------------------------


Pipe with {analyzer=char_wb, max_df=0.9, ngram_range=(3, 3)}
---- Classification report ----
              precision    recall  f1-score   support

     positif       0.75      0.81      0.78      1250
     negatif       0.80      0.73      0.76      1250

    accuracy                           0.77      2500
   macro avg       0.77      0.77      0.77      2500
weighted avg       0.77      0.77      0.77      2500


----------------------------------------------------


F1-Score
[0.8463054717173251, 0.8655996559351191, 0.8647853751861803, 0.8471646889297303, 0.8415314401622719, 0.7947881469633686, 0.8422464363710209, 0.8587997966717072, 0.8587949166169981, 0.844774567865199, 0.8395332201448955, 0.7935776733611507, 0.8349463719930594, 0.8543991613391694, 0.8547994191976769, 0.8455746989586774, 0.8395278774092227, 0.7935776733611507, 0.8321576356258438, 0.8519976319621114, 0.8527991521231162, 0.8455746989586774, 0.8395278774092227, 0.7935776733611507, 0.5393476830891503, 0.685998743994976, 0.7959424067848909, 0.6911873510338983, 0.7931443641081706, 0.7991377809190174, 0.5767609942932341, 0.7091552797158092, 0.7867112377487016, 0.7155995904634104, 0.7886862624939247, 0.7958662188852086, 0.5791027559007232, 0.7003988015952065, 0.7685386894388289, 0.7115796490600377, 0.7697211230688813, 0.7768778115598924, 0.5735538755871835, 0.6975146265281913, 0.7535652891700961, 0.6994091127629689, 0.7579648789407645, 0.7643764053264397, 0.5401784356895305, 0.6883999501439919, 0.7943303684895557, 0.6915821857870511, 0.7919167667066827, 0.798305897599584, 0.5767609942932341, 0.7087580611608072, 0.7870604479351588, 0.7151983595425508, 0.7886526993853635, 0.7954441775566956, 0.5791027559007232, 0.7011976573896339, 0.7709770599091981, 0.7123833872644484, 0.7705709012791813, 0.7829060026249948, 0.5735538755871835, 0.697118537001712, 0.7564408574307331, 0.6994210473147293, 0.7604011541772897, 0.7711963904327234]
In [ ]:
import pandas as pd
max_df = [0.2, 0.5, 0.7, 0.9]
ngram_range = [(1,1), (1,2), (1,3),(2,2), (2,3), (3,3)]
analyzer = ["word", "char", "char_wb"]

result_df = pd.DataFrame(columns=['analyzer', 'max_df','ngram_range'])

for i in analyzer:
  for j in max_df:
    for k in ngram_range:
      new_row = {'analyzer':i, 'max_df':j, 'ngram_range':str(k)}
      result_df = result_df.append(new_row, ignore_index=True)

result_df.insert (0, "f1-score", f1_score_list)
In [ ]:
result_df
Out[ ]:
f1-score analyzer max_df ngram_range
0 0.846305 word 0.2 (1, 1)
1 0.865600 word 0.2 (1, 2)
2 0.864785 word 0.2 (1, 3)
3 0.847165 word 0.2 (2, 2)
4 0.841531 word 0.2 (2, 3)
... ... ... ... ...
67 0.697119 char_wb 0.9 (1, 2)
68 0.756441 char_wb 0.9 (1, 3)
69 0.699421 char_wb 0.9 (2, 2)
70 0.760401 char_wb 0.9 (2, 3)
71 0.771196 char_wb 0.9 (3, 3)

72 rows × 4 columns

In [ ]:
#!pip install -U hiplot
In [ ]:
import hiplot as hip
result_hiplot = hip.Experiment.from_dataframe(result_df)
result_hiplot.display()
HiPlot
Loading HiPlot...
Out[ ]:
<hiplot.ipython.IPythonExperimentDisplayed at 0x7f5e1eb71bd0>

Output HiPlot

Pour éviter d'avoir installer HiPlot j'ai intégrer des captures d'écran du graphe généré par HiPlot

image.png

Output HiPlot

La combinaison des meilleures hyperparamètres

image.png

Pour connaitre l'impact des différents paramètre de CountVectorzier(), j'ai utilisé l'outil HiPlot (développé par Facebook). On peut facilement observer que l'ensemble des paramètres qui donne le meilleur f1-score sont:

  • analyzer = word
  • max_df = 0.2
  • ngram_range = (1,3)

Tf-idf:

Il s'agit du produit de la fréquence du terme (TF) et de sa fréquence inverse dans les documents (IDF). Cette méthode est habituellement utilisée pour extraire l'importance d'un terme $i$ dans un document $j$ relativement au reste du corpus, à partir d'une matrice d'occurences $mots \times documents$. Ainsi, pour une matrice $\mathbf{T}$ de $|V|$ termes et $D$ documents: $$\text{TF}(T, w, d) = \frac{T_{w,d}}{\sum_{w'=1}^{|V|} T_{w',d}} $$

$$\text{IDF}(T, w) = \log\left(\frac{D}{|\{d : T_{w,d} > 0\}|}\right)$$$$\text{TF-IDF}(T, w, d) = \text{TF}(X, w, d) \cdot \text{IDF}(T, w)$$

On peut l'adapter à notre cas en considérant que le contexte du deuxième mot est le document. Cependant, TF-IDF est généralement plus adaptée aux matrices peu denses, puisque cette mesure pénalisera les termes qui apparaissent dans une grande partie des documents.

In [20]:
from sklearn.feature_extraction.text import TfidfTransformer
In [ ]:
# You can use Pipeline here too
pipe = Pipeline([('vec_count', CountVectorizer(max_features= 10000, analyzer='word', max_df=0.2, ngram_range=(1,3))), 
                 ('tfidf', TfidfTransformer()),
                 ('clf', MultinomialNB())
                 ])

pipe.fit(train_texts_splt, train_labels_splt)

print("features names")
feat_names = pipe['vec_count'].get_feature_names()

print("\n-------------------------\n")

print("Vocabulary")
vocab = pipe['vec_count'].vocabulary_
print(vocab)

print("\n-------------------------\n")

print("CountVectorizer")
vec_count = pipe['vec_count'].transform(train_texts_splt).toarray()
print(vec_count)

print("\n-------------------------\n")

print("TF-IDF")
tf_idf = pipe['tfidf'].idf_
print(tf_idf)
print(len(tf_idf))

print("\n-------------------------\n")

# Make predictions
predictions = pipe.predict(val_texts)

print("Predictions")
print(predictions)

# Show the results in a readable format
print("\n\n---- Classification report ----")

report_classification = classification_report(val_labels, predictions, target_names=["positif", "negatif"], output_dict=True)

print(classification_report(val_labels, predictions, target_names=["positif", "negatif"]))

cm = confusion_matrix(val_labels, predictions)
cm_disp = ConfusionMatrixDisplay(cm, display_labels=["positif", "negatif"])

cm_disp.plot()
plt.show()
features names

-------------------------

Vocabulary
{'bought': 1187, 'blockbuster': 1145, 'guy': 3338, 'behind': 1054, 'said': 6695, 'reason': 6484, 'cheap': 1690, 'disc': 2196, 'failed': 2654, 'mention': 5099, 'poor': 6242, 'effort': 2393, 'sucked': 7421, 'harder': 3400, 'paris': 6058, 'hotel': 3740, 'room': 6662, 'home': 3708, 'video': 9245, 'talking': 7511, 'videos': 9248, 'since': 7050, 'fair': 2660, 'game': 3124, 'release': 6529, 'films': 2844, 'mean': 5062, 'say': 6730, 'used': 9179, 'actors': 131, 'your': 9985, 'friends': 3065, 'lame': 4626, 'ideas': 3798, 'together': 8931, 'weekend': 9500, 'production': 6334, '00': 0, 'budget': 1387, 'someone': 7167, 'fall': 2667, 'down': 2297, 'soundtrack': 7201, 'slap': 7080, 'take': 7491, 'lonely': 4823, 'desperation': 2110, 'here': 3591, 'fast': 2706, 'through': 8626, 'side': 7028, 'ready': 6457, 'until': 9138, 'next': 5460, 'night': 5468, 'while': 9620, 'watching': 9441, 'day': 2032, 'horror': 3729, '99': 54, 'keep': 4550, 'different': 2164, 'now': 5581, 'grim': 3310, 'look': 4829, 'back': 898, 'catch': 1617, 'moments': 5174, 'listed': 4785, 'wonderful': 9791, 'imdb': 3848, 'viewers': 9254, 'hilarious': 3627, 'sure': 7455, 'enough': 2465, 'once': 5846, 'got': 3268, 'over': 6014, 'pain': 6044, 'utter': 9188, 'enjoy': 2454, 'downright': 2303, 'funny': 3108, 'stuff': 7390, 'lot': 4859, 'check': 1691, 'flick': 2912, 'hell': 3558, 'might': 5121, 'worth': 9838, 'crap': 1947, 'the guy': 7932, 'behind the': 1055, 'said the': 6698, 'the reason': 8137, 'was so': 9384, 'was because': 9340, 'because the': 1014, 'failed to': 2655, 'to mention': 8823, 'mention that': 5100, 'that the': 7680, 'film was': 2830, 'has it': 3418, 'it been': 4298, 'them as': 8321, 'to say': 8857, 'used to': 9181, 'actors and': 132, 'and so': 496, 'so on': 7120, 'any more': 604, 'friends and': 3066, 'the production': 8129, 'with an': 9723, 'budget and': 1388, 'and get': 412, 'to fall': 8764, 'down the': 2300, 'the soundtrack': 8193, 'it on': 4381, 'for some': 2977, 'me to': 5056, 'to take': 8884, 'but here': 1425, 'here the': 3604, 'most of': 5215, 'of this': 5743, 'this and': 8466, 'it to': 4416, 'to one': 8833, 'until the': 9139, 'the next': 8065, 'while watching': 9627, 'home and': 3709, 'film made': 2811, 'look like': 4834, 'like the': 4751, 'back on': 905, 'on to': 5837, 'to catch': 8732, 'up on': 9155, 'on some': 5826, 'some of': 7151, 'the wonderful': 8286, 'over the': 6020, 'the horror': 7949, 'down to': 2301, 'and there': 527, 'there lot': 8369, 'lot of': 4862, 'of it': 5657, 'it might': 4372, 'worth it': 9839, 'it was so': 4433, 'the film was': 7893, 'and so on': 497, 'it on the': 4382, 'some of the': 7153, 'down to the': 2302, 'devil': 2128, 'hunter': 3785, 'known': 4603, 'amongst': 319, 'english': 2453, 'speaking': 7211, 'audiences': 869, 'starts': 7281, 'actress': 137, 'model': 5168, 'laura': 4654, 'checking': 1695, 'locations': 4819, 'new': 5455, 'along': 287, 'assistant': 804, 'jane': 4465, 'long': 4824, 'days': 2035, 'work': 9802, 'two': 9070, 'character': 1653, 'named': 5398, 'chris': 1716, 'thomas': 8586, 'having': 3490, 'helped': 3563, 'agent': 206, 'gets': 3166, 'rent': 6557, 'hero': 3607, 'peter': 6146, 'al': 219, 'situation': 7070, 'island': 4271, 'million': 5134, 'told': 8936, 'paid': 6043, '000': 1, 'further': 3117, '10': 2, 'brings': 1367, 'faster': 2709, 'rat': 6427, 'vietnam': 9249, 'buddy': 1386, 'pilot': 6174, 'jack': 4458, 'save': 6718, 'neither': 5441, 'want': 9301, 'hand': 3370, 'things': 8440, 'particular': 6070, 've': 9201, 'lived': 4802, 'managed': 4983, 'build': 1390, 'monster': 5184, 'dude': 2342, 'burt': 1401, 'altman': 302, 'eyes': 2631, 'god': 3217, 'human': 3773, 'young': 9978, 'white': 9629, 'female': 2747, 'flesh': 2911, 'spanish': 7208, 'french': 3058, 'german': 3149, 'co': 1765, 'written': 9882, 'directed': 2177, 'jesus': 4481, 'credit': 1963, 'music': 5358, 'certain': 1633, 'amount': 320, 'uk': 9084, 'placed': 6182, 'list': 4783, 'early': 2364, '80': 50, 'under': 9096, 'title': 8689, 'therefore': 8383, 'banned': 940, 'idea': 3793, 'why': 9670, 'isn': 4272, 'afraid': 176, 'associated': 805, 'turkey': 9044, 'decides': 2064, 'wants': 9311, 'hide': 3615, 'brown': 1381, 'imagine': 3846, 'die': 2159, 'hard': 3396, 'fan': 2684, 'thing': 8431, 'script': 6803, 'sorry': 7190, 'obviously': 5604, 'another': 593, 'less': 4699, 'impressed': 3856, 'finished': 2877, 'product': 6333, 'wanted': 9306, 'awful': 893, 'simple': 7046, 'straight': 7357, 'forward': 3031, 'start': 7273, 'boring': 1174, 'ever': 2541, 'without': 9767, 'slightest': 7087, 'bit': 1127, 'tension': 7559, 'excitement': 2586, 'involved': 4081, 'big': 1113, 'black': 1135, 'stupid': 7394, 'looking': 4838, 'plus': 6223, 'tame': 7516, 'scenes': 6768, 'fails': 2657, 'action': 119, 'adventure': 168, 'success': 7413, 'avoid': 879, 'director': 2184, 'shows': 7021, 'usual': 9186, 'throughout': 8632, 'head': 3537, 'achieved': 105, 'actor': 126, 'lying': 4908, 'ground': 3315, 'large': 4631, 'leaves': 4680, 'around': 710, 'bottom': 1184, 'neck': 5423, 'try': 9034, 'give': 3182, 'impression': 3858, 'attached': 849, 'anything': 617, 'endless': 2445, 'walking': 9293, 'jungle': 4515, 'getting': 3169, 'doing': 2252, 'either': 2397, 'becomes': 1022, 'incredibly': 4003, 'dull': 2347, 'tedious': 7535, 'minutes': 5147, 'forget': 3017, 'goes': 3219, 'state': 7286, 'must': 5365, 'scene': 6752, 'supposed': 7451, 'turning': 9051, 'camera': 1530, 'floor': 2915, 'never': 5445, 'onto': 5906, 'pulls': 6372, 'himself': 3646, 'gore': 3264, 'far': 2693, 'go': 3204, 'gross': 3314, 'close': 1753, 'ups': 9167, 'mouth': 5229, 'bits': 1132, 'meat': 5072, 'man': 4972, 'blood': 1148, 'handful': 3372, 'nudity': 5591, 'unpleasant': 9135, 'rape': 6423, 'low': 4894, 'poorly': 6243, 'special': 7213, 'effects': 2389, 'rock': 6644, 'values': 9194, 'decent': 2059, 'setting': 6927, 'least': 4673, 'looks': 4843, 'authentic': 874, 'sucks': 7422, 'sound': 7197, 'become': 1020, 'annoying': 591, 'lots': 4867, 'heavy': 3554, 'whenever': 9594, 'screen': 6797, 'whole': 9662, 'dubbed': 2340, 'anyway': 623, 'act': 110, 'terrible': 7563, 'fatal': 2711, 'mistake': 5161, 'sleazy': 7083, 'atmosphere': 845, 'those': 8588, 'pretty': 6297, 'anyone': 614, 'cinematic': 1726, 'experience': 2605, 'should': 6996, 'wide': 9681, 'possible': 6261, 'as it': 750, 'it more': 4374, 'starts with': 7285, 'for her': 2958, 'along with': 290, 'with her': 9731, 'of her': 5647, 'by the': 1506, 'to rent': 8853, 'who is': 9644, 'the situation': 8184, 'on an': 5801, 'is told': 4251, 'that he': 7630, 'he will': 3535, 'will be': 9687, 'to get': 8776, 'if he': 3806, 'as well': 785, 'are on': 680, 'the island': 7963, 'on how': 5816, 'how to': 3762, 'to save': 8855, 'so the': 7123, 'has the': 3429, 'want to': 9302, 'that much': 7660, 'just to': 4540, 'this particular': 8555, 'in all': 3864, 'all the': 256, 'they ve': 8424, 'managed to': 4984, 'to build': 8726, 'now that': 5585, 'br this': 1323, 'directed by': 2178, 'who also': 9631, 'gets the': 3167, 'credit for': 1964, 'the music': 8054, 'amount of': 321, 'here in': 3600, 'the uk': 8250, 'the video': 8261, 'the early': 7839, 'said that': 6697, 'that have': 7629, 'have no': 3464, 'no idea': 5477, 'is one': 4202, 'bad film': 919, 'film even': 2789, 'associated with': 806, 'he wants': 3532, 'wants to': 9312, 'under the': 9097, 'even the': 2529, 'the most': 8035, 'die hard': 2160, 'would have': 9854, 'this thing': 8571, 'thing the': 8438, 'the script': 8167, 'who was': 9657, 'another one': 595, 'less than': 4700, 'impressed with': 3857, 'is awful': 4111, 'it as': 4291, 'as that': 771, 'that for': 7623, 'film is': 2802, 'is so': 4223, 'plot is': 6215, 've ever': 9204, 'ever seen': 2543, 'without the': 9771, 'the slightest': 8185, 'bit of': 1129, 'side of': 7029, 'of things': 5742, 'as we': 784, 'we get': 9476, 'horror film': 3730, 'as an': 725, 'an action': 323, 'it has': 4337, 'has no': 3423, 'no more': 5482, 'one to': 5886, 'to avoid': 8706, 'his usual': 3684, 'by an': 1495, 'an actor': 324, 'the ground': 7929, 'around the': 713, 'the bottom': 7770, 'bottom of': 1186, 'of his': 5649, 'to try': 8908, 'give the': 3185, 'the impression': 7959, 'it not': 4378, 'scenes are': 6770, 'the action': 7723, 'action is': 121, 'scenes of': 6775, 'of people': 5686, 'to not': 8831, 'not really': 5545, 'when they': 9589, 'they get': 8407, 'it becomes': 4297, 'to watch': 8916, '10 minutes': 6, 'goes on': 3220, 'on for': 5812, 'in it': 3896, 'mention the': 5101, 'is supposed': 4231, 'supposed to': 7452, 'on it': 5819, 'along the': 288, 'the floor': 7907, 'look at': 4831, 'the way': 8270, 'way he': 9455, 'he never': 3520, 'as he': 740, 'he just': 3513, 'the gore': 7925, 'isn that': 4276, 'that great': 7626, 'great as': 3292, 'as far': 733, 'far as': 2694, 'is very': 4258, 'there are': 8350, 'are some': 687, 'close ups': 1756, 'man is': 4976, 'there some': 8374, 'handful of': 3373, 'scene br': 6754, 'must have': 5367, 'have had': 3457, 'low budget': 4895, 'film with': 2836, 'special effects': 7214, 'production values': 6336, 'the only': 8074, 'thing about': 8432, 'about it': 67, 'at least': 825, 'as there': 776, 'there is': 8361, 'lots of': 4868, 'is on': 4200, 'on screen': 5825, 'the acting': 7720, 'the whole': 8277, 'whole thing': 9666, 'but no': 1445, 'no one': 5483, 'one in': 5864, 'can act': 1536, 'is terrible': 4233, 'film that': 2823, 'of being': 5627, 'only good': 5896, 'good things': 3259, 'can say': 1554, 'say is': 6733, 'is that': 4235, 'that it': 7646, 'to it': 8796, 'are pretty': 682, 'looking for': 4840, 'as possible': 763, 'in all the': 3865, 'br br this': 1257, 'in the uk': 3965, 'as it was': 752, 'in the early': 3945, 'have no idea': 3465, 'as it is': 751, 'it is one': 4352, 'he wants to': 3533, 'the film is': 7887, 'is one of': 4203, 'one of the': 5874, 've ever seen': 9205, 'this is one': 8510, 'is supposed to': 4232, 'supposed to be': 7453, 'look at the': 4832, 'the way he': 8271, 'as far as': 734, 'this is very': 8512, 'there are some': 8355, 'scene br br': 6755, 'it is the': 4356, 'the whole thing': 8280, 'the only good': 8075, 'is that it': 4236, 'that it has': 7647, 'shooting': 6981, 'cutting': 2000, 'crew': 1967, 'group': 3316, 'filmmakers': 2843, 'thoughtful': 8611, 'yes': 9905, 'clever': 1746, 'zero': 9996, 'dollar': 2254, 'knowledge': 4602, 'kind': 4578, 'others': 5967, 'feature': 2724, 'these': 8384, 'guys': 3343, 'ones': 5891, 'shorts': 6988, 'collection': 1772, 'horrors': 3734, 'development': 2124, 'working': 9817, 'fun': 3100, 'll': 4810, 'business': 1404, 'harsh': 3405, 'insulting': 4041, 'criticism': 1977, 'wondering': 9793, 'reviewer': 6606, 'heard': 3543, 'word': 9800, 'dialogue': 2134, 'thought': 8602, 'concept': 1847, 'visual': 9271, 'mindless': 5139, 'view': 9250, 'audience': 867, 'let': 4704, 'empty': 2424, 'bring': 1365, 'itself': 4456, 'expect': 2598, 'put': 6382, 'thriller': 8622, 'genre': 3144, 'due': 2343, 'supernatural': 7446, 'premise': 6283, 'drama': 2311, 'depth': 2094, 'beyond': 1110, 'stick': 7313, 'message': 5106, 'doesn': 2238, 'brain': 1343, 'center': 1629, 'rather': 6431, 'upon': 9164, 'imagination': 3844, 'suffering': 7427, 'mind': 5136, 'spirit': 7229, 'mark': 5004, 'curtis': 1995, 'script and': 6804, 'and then': 524, 'it this': 4415, 'group of': 3317, 'of good': 5644, 'time and': 8650, 'is all': 4100, 'all you': 274, 'you have': 9935, 'for their': 2991, 'these guys': 8389, 'check out': 1694, 'and see': 492, 'see the': 6838, 'and can': 378, 'with them': 9754, 'them is': 8327, 'is about': 4096, 'about the': 69, 'you ll': 9944, 'do in': 2213, 'for this': 2993, 'if one': 3811, 'or if': 5928, 'all that': 255, 'that was': 7700, 'was the': 9393, 'view of': 9251, 'of what': 5759, 'to an': 8699, 'an audience': 334, 'let the': 4708, 'to you': 8927, 'you don': 9926, 'what you': 9576, 'you expect': 9929, 'it should': 4402, 'should be': 6997, 'just because': 4523, 'because it': 1007, 'it gets': 4329, 'put in': 6383, 'due to': 2344, 'to its': 8797, 'you can': 9920, 'that doesn': 7617, 'but rather': 1454, 'mind and': 5137, 'is about the': 4097, 'for this film': 2994, 'it should be': 4403, 'saw': 6724, 'ages': 207, 'ago': 208, 'younger': 9984, 'remember': 6542, 'john': 4495, 'candy': 1567, 'credits': 1965, 'noticed': 5577, 'entry': 2482, 'crime': 1969, 'something': 7170, 'bell': 1074, 'reading': 6455, 'summary': 7437, 'brought': 1379, 'memories': 5089, 'found': 3035, 'aged': 205, 'despite': 2111, 'fact': 2643, 'means': 5067, 'comedy': 1798, 'however': 3764, 'enjoyable': 2458, 'hitchcock': 3694, 'formula': 3027, 'identity': 3800, 'thrills': 8625, 'cast': 1606, 'american': 315, 'couple': 1931, 'find': 2864, 'woman': 9776, 'dog': 2250, 'europe': 2513, 'decide': 2060, 'return': 6592, 'dead': 2039, 'body': 1161, 'run': 6677, 'police': 6238, 'killers': 4573, 'mix': 5164, 'between': 1106, 'mad': 4912, 'world': 9819, 'such': 7416, 'star': 7263, 'mostly': 5221, 'engaging': 2451, 'ending': 2441, 'little': 4792, 'twist': 9065, 'totally': 8966, 'unexpected': 9109, 'saw this': 6727, 'when was': 9591, 'and could': 380, 'remember the': 6544, 'the title': 8236, 'one day': 5860, 'on imdb': 5817, 'it and': 4289, 'and after': 354, 'reading the': 6456, 'the plot': 8109, 'br ve': 1329, 'found it': 3037, 'despite the': 2112, 'the fact': 7869, 'fact that': 2645, 'is not': 4190, 'by any': 1496, 'and is': 438, 'is good': 4155, 'movie has': 5262, 'cast of': 1612, 'of characters': 5631, 'an american': 331, 'decide to': 2061, 'to her': 8790, 'only to': 5904, 'to find': 8771, 'from there': 3087, 'there the': 8375, 'and they': 530, 'they go': 8408, 'go on': 3209, 'after the': 186, 'the police': 8116, 'think they': 8457, 'they are': 8394, 'are the': 691, 'kind of': 4579, 'world and': 9820, 'this was': 8578, 'and he': 426, 'get some': 3161, 'such as': 7418, 'star in': 7264, 'it the': 4412, 'movie is': 5270, 'is mostly': 4180, 'cast and': 1607, 'the ending': 7851, 'that isn': 7645, 'but also': 1408, 'br br ve': 1260, 'the fact that': 7870, 'fact that it': 2646, 'that it is': 7648, 'it is not': 4351, 'br the movie': 1314, 'the movie has': 8044, 'some of his': 7152, 'the movie is': 8046, 'and the ending': 512, 'using': 9184, 'pointed': 6234, 'plenty': 6210, 'credible': 1962, 'believe': 1063, 'end': 2427, 'easier': 2369, 'feel': 2728, 'touched': 8968, 'both': 1178, 'mentally': 5098, 'physically': 6156, 'life': 4721, 'environment': 2483, 'completely': 1841, 'viewer': 9253, 'still': 7316, 'gain': 3123, 'seeing': 6846, 'although': 298, 'took': 8955, 'years': 9893, 'boxing': 1192, 'sports': 7245, 'general': 3139, 'gave': 3132, 'familiar': 2678, 'common': 1828, 'thoughts': 8612, 'above': 80, 'average': 878, 'opinion': 5915, 'know': 4590, 'well known': 9515, 'pointed out': 6235, 'have seen': 3471, 'plenty of': 6211, 'of movies': 5674, 'movies that': 5324, 'that don': 7618, 'do it': 2215, 'or that': 5938, 'that are': 7600, 'are not': 679, 'believe it': 1065, 'is in': 4166, 'the end': 7846, 'the character': 7788, 'character and': 1654, 'and that': 507, 'that way': 7703, 'movie br': 5246, 'even if': 2523, 'if your': 3833, 'your life': 9989, 'life and': 4722, 'different and': 2165, 'and think': 532, 'think the': 8456, 'the viewer': 8262, 'can still': 1556, 'seeing this': 6849, 'although it': 299, 'it took': 4420, 'years to': 9903, 'to start': 8880, 'in general': 3889, 'movie that': 5293, 'me the': 5054, 'br so': 1308, 'actors are': 133, 'are good': 666, 'good but': 3242, 'but the': 1461, 'it can': 4306, 'make it': 4946, 'in my': 3911, 'my opinion': 5386, 'it made': 4367, 'on me': 5822, 'me and': 5043, 'not the': 5550, 'only one': 5898, 'it is in': 4349, 'is in the': 4167, 'in the end': 3946, 'the movie br': 8040, 'movie br br': 5247, 'this is the': 8511, 'the movie that': 8048, 'br br so': 1251, 'the plot is': 8111, 'in my opinion': 3912, 'the only one': 8076, 'read': 6452, 'thru': 8641, 'comments': 1822, 'major': 4940, 'problems': 6325, 'show': 7004, 'unlike': 9131, 'mr': 5330, 'whose': 9669, 'does': 2232, 'again': 193, 'hit': 3692, 'genuinely': 3147, 'personality': 6141, 'shines': 6972, 'where': 9595, 'makes': 4958, 'smile': 7098, 'exactly': 2569, 'questions': 6398, 'round': 6667, 'fashion': 2704, 're': 6439, 'presented': 6291, 'add': 148, 'appeal': 633, 'though': 8595, 'deal': 2041, 'money': 5178, 'stress': 7366, 'exists': 2597, 'exist': 2594, 'several': 6930, 'messages': 5107, 'similar': 7043, 'missed': 5157, 'yourself': 9994, 'everyone': 2553, 'test': 7570, 'eye': 2629, 'suspense': 7476, 'filled': 2771, 'rich': 6614, 'miss': 5156, 'games': 3125, 'quite': 6403, 'frank': 3049, 'hate': 3435, 'liked': 4761, 'truly': 9030, 'match': 5022, 'the comments': 7807, 'all can': 239, 'say it': 6734, 'it that': 4411, 'that most': 7658, 'of these': 5740, 'in life': 3899, 'this show': 8567, 'show was': 7013, 'he does': 3500, 'again the': 200, 'the show': 8182, 'he goes': 3504, 'makes you': 4965, 'exactly what': 2571, 'what the': 9568, 'also the': 296, 'they re': 8418, 'add to': 149, 'and even': 394, 'even though': 2530, 'great deal': 3294, 'deal of': 2042, 'of money': 5672, 'in most': 3908, 'does not': 2236, 'people who': 6106, 'how much': 3757, 'much time': 5347, 'time is': 8658, 'doesn have': 2240, 'is most': 4179, 'of you': 5765, 'the idea': 7956, 'here is': 3601, 'is to': 4250, 'to have': 8785, 'for everyone': 2952, 'if that': 3815, 'bad for': 920, 'for you': 3006, 'you and': 9914, 'and if': 433, 'that not': 7664, 'not enough': 5522, 'can get': 1542, 'out of': 5989, 'of all': 5618, 'shows that': 7022, 'have ever': 3452, 'the one': 8072, 'really liked': 6481, 'most of the': 5217, 'of the show': 5728, 'you can get': 9921, 'of all the': 5619, 'is the one': 4244, 'cheesy': 1697, 'creepy': 1966, 'top': 8958, 'melodramatic': 5082, 'plain': 6185, 'laughable': 4649, 'laugh': 4645, 'three': 8618, 'women': 9780, 'during': 2351, 'before': 1034, 'small': 7094, 'town': 8978, 'cover': 1940, 'festival': 2749, 'stay': 7293, 'meet': 5077, 'psycho': 6365, 'offers': 5783, 'tell': 7543, 'truth': 9033, 'lives': 4804, 'stephen': 7305, 'performance': 6114, 'amazing': 311, 'carries': 1594, 'finding': 2871, 'family': 2681, 'interesting': 4055, 'barbara': 942, 'nice': 5462, 'consider': 1863, 'old': 5792, 'gem': 3137, 'but that': 1459, 'that what': 7706, 'what makes': 9565, 'makes it': 4960, 'it so': 4406, 'so much': 7119, 'it got': 4332, 'the top': 8238, 'moments that': 5177, 'are just': 670, 'just plain': 4535, 'is great': 4156, 'great to': 3301, 'to make': 8814, 'fun of': 3102, 'rent it': 6558, 'it for': 4325, 'for good': 2957, 'go to': 3213, 'small town': 7095, 'to cover': 8739, 'but they': 1470, 'they can': 8398, 'to stay': 8881, 'the night': 8066, 'night and': 5469, 'that when': 7707, 'way and': 9451, 'to let': 8806, 'at his': 820, 'but he': 1422, 'he doesn': 3501, 'them the': 8328, 'the truth': 8244, 'there br': 8356, 'performance is': 6119, 'as the': 772, 'he really': 3523, 'out the': 5999, 'br just': 1293, 'in these': 3973, 'it worth': 4445, 'an old': 348, 'hard to': 3397, 'over the top': 6021, 'this movie is': 8537, 'br the film': 1312, 'there br br': 8357, 'of the movie': 5720, 'br br just': 1239, 'couldn': 1925, 'eight': 2396, 'going': 3222, 'wars': 9325, 'theater': 8308, 'happen': 3383, 'few': 2752, 'hadn': 3358, 'empire': 2423, 'strikes': 7370, 'yet': 9908, 'boy': 1193, 'did': 2140, 'deliver': 2078, 'critical': 1976, 'green': 3305, 'wow': 9873, 'magical': 4933, 'watched': 9435, 'hundreds': 3782, 'times': 8675, 'form': 3023, 'accurate': 102, 'point': 6225, 'multiple': 5350, 'course': 1935, 'real': 6459, 'episode': 2485, 'iii': 3837, 'flaws': 2910, 'context': 1877, 'millions': 5135, '1980': 23, 'may': 5033, 'mine': 5141, 'couldn have': 1926, 'have been': 3445, 'been more': 1031, 'years old': 9902, 'back in': 901, 'was going': 9351, 'going to': 3226, 'to see': 8861, 'star wars': 7267, 'movie at': 5244, 'the theater': 8224, 'the best': 7756, 'of my': 5676, 'my life': 5382, 'was about': 9328, 'about to': 77, 'to happen': 8784, 'happen to': 3385, 'to that': 8887, 'that time': 7697, 'my only': 5385, 'had been': 3346, 'seen the': 6875, 'br and': 1205, 'for my': 2973, 'have watched': 3485, 'watched this': 9438, 'hundreds of': 3783, 'of times': 5751, 'can even': 1540, 'at this': 841, 'this point': 8559, 'of course': 5634, 'that this': 7692, 'movie the': 5295, 'the real': 8134, 'does have': 2233, 'br of': 1299, 'are more': 676, 'more like': 5202, 'and this': 533, 'was my': 9367, 'have been more': 3448, 'was going to': 9352, 'of my life': 5678, 'br br and': 1217, 'watched this movie': 9439, 'at this point': 842, 'that this movie': 7695, 'this movie the': 8544, 'br br of': 1245, 'br of course': 1300, 'savage': 6717, 'raw': 6436, 'scare': 6746, 'trust': 9031, 'city': 1732, 'revenge': 6604, 'stop': 7328, 'nothing': 5564, 'negative': 5437, 'review': 6605, 'clearly': 1745, 'comes': 1802, 'lacks': 4621, 'proper': 6349, 'chose': 1713, 'lighting': 4735, 'order': 5944, 'dark': 2017, 'mood': 5189, 'words': 9801, 'won': 9784, 'awards': 882, 'the hell': 7940, 'trust me': 9032, 'me br': 5045, 'br when': 1334, 'when the': 9588, 'the boy': 7772, 'by some': 1504, 'he gets': 3503, 'it br': 4301, 'is real': 4216, 'with some': 9746, 'br also': 1202, 'comes from': 1806, 'someone who': 7169, 'of film': 5641, 'film the': 2825, 'the filmmakers': 7895, 'camera work': 1531, 'work in': 9808, 'in order': 3920, 'order to': 5945, 'the dark': 7819, 'the story': 8204, 'story in': 7341, 'in other': 3922, 'other words': 5966, 'br in': 1288, 'in fact': 3880, 'fact the': 2648, 'film has': 2795, 'film festival': 2791, 'me br br': 5046, 'br br when': 1265, 'it br br': 4302, 'br this is': 1325, 'br br also': 1214, 'in order to': 3921, 'of the story': 5729, 'in other words': 3923, 'br br in': 1237, 'in fact the': 3882, 'the film has': 7885, 'joseph': 4504, 'smith': 7099, 'building': 1391, 'lake': 4625, 'morning': 5211, 'assume': 807, 'level': 4712, 'enjoyment': 2464, 'largely': 4632, 'based': 947, 'aside': 792, 'acted': 111, 'score': 6790, 'picture': 6163, 'quality': 6392, 'entire': 2478, 'wonder': 9787, 'church': 1722, 'batman': 956, 'begins': 1050, 'regard': 6515, 'places': 6183, 'tears': 7529, 'expected': 2602, 'handed': 3371, 'started': 7278, 'available': 876, '70': 47, 'whether': 9603, 'tells': 7548, 'fascinating': 2703, 'saw it': 6725, 'it at': 4292, 'that one': 7666, 'level of': 4713, 'during this': 2353, 'movie will': 5309, 'based on': 948, 'on one': 5824, 'story br': 7337, 'br however': 1285, 'was very': 9406, 'very well': 9234, 'well made': 9516, 'well acted': 9505, 'acted and': 112, 'and had': 421, 'you get': 9932, 'get to': 3164, 'is must': 4184, 'see it': 6833, 'it in': 4342, 'have never': 3462, 'never been': 5447, 'been in': 1029, 'wonder if': 9788, 'if the': 3816, 'the church': 7798, 'let me': 4707, 'being that': 1058, 'and was': 548, 'brought to': 1380, 'few times': 2755, 'before the': 1038, 'check it': 1692, 'it out': 4387, 'or not': 5935, 'this movie will': 8547, 'story br br': 7338, 'br br however': 1235, 'it was very': 4435, 'to see it': 8864, 'it in the': 4343, 'that this film': 7693, 'this film is': 8488, 'if you have': 3827, 'check it out': 1693, 'horrible': 3725, 'tale': 7502, 'barely': 943, 'part': 6063, 'murder': 5352, 'victims': 9241, 'turns': 9052, 'alive': 232, 'chance': 1641, 'elements': 2403, 'slight': 7086, 'baby': 897, 'box': 1190, 'crude': 1981, 'images': 3843, 'torture': 8963, 'trash': 8996, 'sexy': 6939, 'feeling': 2734, 'version': 9215, 'left': 4687, 'likely': 4766, 'pg': 6147, '13': 10, 'addition': 153, 'sense': 6890, 'planet': 6188, 'apes': 629, 'friend': 3062, 'bottle': 1183, 'need': 5425, 'that can': 7609, 'put into': 6384, 'best part': 1089, 'part of': 6067, 'movie was': 5304, 'was when': 9410, 'the murder': 8053, 'up at': 9144, 'and well': 552, 'the chance': 7786, 'may have': 5035, 'during the': 2352, 'the time': 8230, 'time this': 8667, 'was on': 9372, 'the box': 7771, 'scenes that': 6776, 'are never': 677, 'even in': 2526, 'get the': 3162, 'the feeling': 7874, 'the budget': 7775, 'the good': 7924, 'more than': 5207, 'got the': 3270, 'that made': 7652, 'about as': 62, 'as much': 757, 'the new': 8064, 'watch this': 9431, 'this one': 8551, 'one with': 5889, 'friend and': 3063, 'the best part': 7759, 'part of the': 6068, 'the movie was': 8051, 'up at the': 9145, 'at the end': 835, 'there is the': 8367, 'may have been': 5036, 'that the movie': 7682, 'in the film': 3948, 'this was the': 8580, 'of the film': 5709, 'italian': 4450, 'basically': 952, 'soap': 7134, 'opera': 5914, 'skin': 7076, 'vhs': 9237, 'rated': 6430, 'actual': 140, 'tape': 7518, 'inside': 4025, 'latter': 4644, 'short': 6984, 'near': 5414, 'shocking': 6978, 'performing': 6131, 'sex': 6933, 'somewhere': 7180, 'done': 2281, 'nude': 5590, 'face': 2636, 'better': 1095, 'looked': 4836, 'beautiful': 1000, 'unfortunately': 9112, 'ugly': 9083, 'waste': 9418, 'certainly': 1634, 'recommended': 6503, 'is basically': 4115, 'soap opera': 7135, 'said it': 6696, 'the actual': 7729, 'the latter': 7980, 'lot more': 4861, 'because there': 1015, 'near the': 5415, 'you could': 9924, 'could see': 1923, 'on this': 5834, 'this guy': 8499, 'guy and': 3339, 'and yes': 564, 'see his': 6829, 'in her': 3891, 'the first': 7899, 'first time': 2893, 'something like': 7173, 'like this': 4753, 'this on': 8550, 'around in': 712, 'scenes but': 6771, 'but her': 1424, 'was even': 9346, 'even better': 2519, 'better than': 1100, 'unfortunately the': 9114, 'waste of': 9419, 'of time': 5749, 'certainly not': 1635, 'it was the': 4434, 'near the end': 5416, 'in the dark': 3944, 'that this was': 7696, 'was the first': 9395, 'the first time': 7905, 'waste of time': 9420, 'of time and': 5750, 'giving': 3196, 'kid': 4564, 'played': 6195, 'job': 4487, 'kids': 4566, 'happened': 3386, 'right': 6621, 'age': 203, 'minor': 5145, 'judge': 4508, 'standards': 7258, 'full': 3097, 'kinds': 4582, 'japanese': 4468, 'culture': 1989, 'hat': 3434, 'moral': 5192, 'example': 2572, 'moment': 5172, 'band': 936, 'finds': 2872, 'themselves': 8333, 'abandoned': 55, 'adult': 164, 'hint': 3650, 'disney': 2205, 'school': 6780, 'teacher': 7526, 'book': 1167, 'tv': 9056, 'commercial': 1824, 'japan': 4467, 'came': 1523, 'motion': 5224, 'animation': 583, 'depressed': 2091, 'playing': 6200, 'singing': 7057, 'mother': 5222, 'shut': 7025, 'gives': 3194, 'bar': 941, 'sings': 7059, 'happy': 3395, 'tune': 9042, 'considered': 1864, 'didn': 2149, 'hear': 3541, 'physical': 6155, 'war': 9314, 'parent': 6056, 'arms': 707, 'necessarily': 5421, 'lessons': 4703, 'drawn': 2317, 'accept': 93, 'cultural': 1988, 'allow': 276, 'imagery': 3842, 'past': 6083, 'cops': 1900, 'probably': 6319, 'taking': 7501, 'sort': 7192, 'pre': 6277, 'post': 6265, 'violence': 9261, 'off': 5768, 'color': 1775, 'wait': 9282, 'till': 8648, 'older': 5796, 'only reason': 5899, 'the other': 8086, 'actors who': 136, 'who played': 9650, 'were not': 9535, 'up to': 9160, 'the job': 7965, 'they were': 8426, 'were just': 9534, 'happened to': 3388, 'be the': 989, 'the right': 8145, 'and their': 523, 'scenes were': 6778, 'not to': 5551, 'full of': 3098, 'kinds of': 4583, 'the black': 7765, 'films are': 2846, 'for example': 2953, 'let down': 4706, 'down and': 2298, 'would do': 9849, 'this would': 8584, 'would not': 9863, 'happen in': 3384, 'film this': 2827, 'this picture': 8556, 'also has': 294, 'you will': 9973, 'will ever': 9689, 'see in': 6832, 'early on': 2365, 'couple of': 1932, 'the head': 7937, 'there was': 8377, 'years before': 9898, 'came out': 1526, 'out it': 5987, 'in his': 3893, 'his mother': 3675, 'up and': 9142, 'but his': 1426, 'in and': 3869, 'him to': 3644, 'again and': 194, 'funny and': 3109, 'and didn': 383, 'was there': 9398, 'is lot': 4176, 'the great': 7927, 'than one': 7581, 'one would': 5890, 'movie as': 5243, 'if this': 3821, 'film would': 2837, 'would be': 9847, 'up in': 9152, 'end of': 2434, 'the picture': 8105, 'are also': 656, 'black and': 1136, 'and white': 557, 'since it': 7052, 'that would': 7710, 'not get': 5527, 'past the': 6084, 'some sort': 7161, 'sort of': 7193, 'and or': 477, 'the violence': 8265, 'violence and': 9262, 'and other': 478, 'to show': 8873, 'show it': 7008, 'to them': 8898, 'the only reason': 8077, 'is that the': 4237, 'up to the': 9161, 'to be the': 8716, 'because it was': 1009, 'the end of': 7849, 'end of the': 2435, 'black and white': 1137, 'some sort of': 7162, 'worry': 9830, 'sit': 7064, 'clean': 1742, 'come': 1786, 'including': 3998, 'favorites': 2718, 'against': 201, 'wish': 9714, 'memorable': 5088, 'parts': 6075, 'spoilers': 7239, 'nicely': 5465, 'with all': 9721, 'nice to': 5463, 'where you': 9601, 'don have': 2262, 'have to': 3480, 'about that': 68, 'that and': 7597, 'back and': 899, 'and enjoy': 391, 'with your': 9764, 'might have': 5123, 'they don': 8405, 'hear the': 3542, 'the full': 7914, 'but for': 1420, 'most part': 5219, 'is truly': 4255, 'as they': 777, 'they come': 8399, 'the day': 7820, 'not only': 5543, 'only that': 5900, 'and just': 445, 'and fun': 410, 'movie to': 5300, 'the family': 7871, 'only thing': 5902, 'is too': 4252, 'could be': 1914, 'be more': 978, 'more of': 5203, 'of some': 5693, 'are in': 668, 'not going': 5528, 'don want': 2275, 'here br': 3596, 'br all': 1200, 'all in': 243, 'done and': 2282, 'and great': 420, 'great movie': 3298, 'go out': 3210, 'out and': 5975, 'the kids': 7969, 'and watch': 549, 'with all the': 9722, 'nice to see': 5464, 'for the most': 2986, 'the most part': 8036, 'back in the': 902, 'one of my': 5873, 'movie to watch': 5302, 'br the only': 1315, 'the only thing': 8078, 'movie is that': 5275, 'of some of': 5694, 'not going to': 5529, 'here br br': 3597, 'br br all': 1213, 'br all in': 1201, 'all in all': 244, 'watch this movie': 9433, 'thinks': 8463, 'tries': 9014, 'understood': 9107, 'hits': 3696, 'strong': 7374, 'thrill': 8621, 'kill': 4568, 'wasting': 9424, 'comment': 1819, 'requires': 6573, 'lines': 4778, 'write': 9876, 'garbage': 3128, 'talent': 7504, 'ice': 3792, 'paper': 6054, 'sounds': 7199, 'lion': 4781, 'red': 6505, 'light': 4734, 'hair': 3359, 'explain': 2611, 'once again': 5847, 'of those': 5746, 'those movies': 8590, 'that someone': 7679, 'tries to': 9015, 'think that': 8455, 'that they': 7689, 'anyone who': 616, 'make any': 4944, 'any sense': 610, 'sense of': 6892, 'be to': 990, 'not one': 5541, 'one but': 5856, 'of very': 5754, 'and at': 366, 'll get': 4812, 'you may': 9948, 'lines of': 4780, 'for those': 2996, 'those of': 8591, 'you that': 9961, 'that will': 7709, 'try to': 9036, 'sounds like': 7200, 'that to': 7698, 'to me': 8821, 'one of those': 5876, 'of those movies': 5747, 'out of it': 5992, 'for those of': 2997, 'those of you': 8592, 'creative': 1957, 'epic': 2484, 'style': 7397, 'nor': 5505, 'artistic': 721, 'art': 717, 'important': 3852, 'serious': 6912, 'non': 5497, 'journey': 4505, 'pure': 6374, 'positive': 6258, 'energy': 2450, 'reality': 6467, 'friendly': 3064, 'naive': 5393, 'future': 3118, 'described': 2097, 'place': 6178, 'combination': 1782, 'live': 4798, 'except': 2579, 'technically': 7531, 'always': 304, 'cinematography': 1727, 'especially': 2497, 'cgi': 1636, 'generally': 3140, 'prefer': 6281, 'hollywood': 3706, 'charismatic': 1681, 'fits': 2898, 'design': 2104, 'lack': 4616, 'am': 306, 'track': 8981, 'station': 7291, 'bill': 1120, 'ted': 7534, 'van': 9197, 'love': 4873, 'beginning': 1046, 'saying': 6741, 'imaginative': 3845, 'godfather': 3218, 'absolutely': 84, 'superior': 7444, 'citizen': 1731, 'kane': 4545, 'total': 8965, 'recall': 6491, 'simply': 7047, 'guilty': 3334, 'behavior': 1053, 'likes': 4768, 'bigger': 1118, 'self': 6883, 'sequel': 6900, 'have the': 3479, 'but who': 1485, 'say this': 6740, 'is no': 4189, 'idea that': 3795, 'that an': 7596, 'must be': 5366, 'me with': 5060, 'are lot': 673, 'of films': 5642, 'to this': 8902, 'for sure': 2982, 'is pure': 4213, 'with very': 9761, 'the world': 8291, 'world of': 9824, 'the future': 7917, 'for me': 2968, 'me it': 5050, 'it would': 4446, 'to live': 8809, 'live in': 4800, 'of that': 5699, 'liked the': 4763, 'the cinematography': 7800, 'cinematography and': 1728, 'especially in': 2499, 'by far': 1497, 'the effects': 7845, 'effects are': 2391, 'good and': 3236, 'of them': 5738, 'big budget': 1114, 'its just': 4452, 'just another': 4519, 'but think': 1472, 'think it': 8451, 'is this': 4249, 'this in': 8502, 'in very': 3983, 'way br': 9452, 'the band': 7747, 'into the': 4069, 'film also': 2774, 'the sound': 8192, 'am not': 307, 'big fan': 1115, 'fan of': 2685, 'had to': 3357, 'get this': 3163, 'from the': 3082, 'the scene': 8158, 'love the': 4880, 'at its': 824, 'this br': 8469, 'and very': 547, 'is way': 4260, 'is absolutely': 4098, 'is even': 4138, 'no way': 5489, 'is simply': 4222, 'best movie': 1086, 'movie ever': 5257, 'ever made': 2542, 'what is': 9557, 'part is': 6066, 'the better': 7761, 'movie so': 5291, 'not even': 5523, 'its not': 4453, 'br this film': 1324, 'not one of': 5542, 'the world of': 8292, 'it would be': 4447, 'of this movie': 5745, 'most of them': 5218, 'think it is': 8452, 'way br br': 9453, 'big fan of': 1116, 'this br br': 8470, 'the best movie': 7757, 'movie ever made': 5258, 'is not the': 4193, 'brilliant': 1363, 'within': 9765, 'tom': 8937, 'otherwise': 5969, 'change': 1644, 'theatre': 8310, 'spell': 7222, 'reason to': 6486, 'see this': 6840, 'is for': 4146, 'performance by': 6117, 'within the': 9766, 'as usual': 782, 'doesn even': 2239, 'does he': 2234, 'change the': 1645, 'to see this': 8867, 'see this movie': 6842, 'in the movie': 3955, 'the movie as': 8039, 'takes': 7497, 'primarily': 6307, 'travel': 8997, 'miles': 5131, 'france': 3046, 'italy': 4451, 'middle': 5116, 'east': 2371, 'tour': 8972, 'father': 2713, 'wishes': 9717, 'question': 6397, 'car': 1578, 'drive': 2326, 'help': 3559, 'son': 7182, 'broken': 1373, 'vehicle': 9214, 'dad': 2002, 'plane': 6187, 'personal': 6139, 'hold': 3699, 'understand': 9100, 'hence': 3566, 'set': 6918, 'beauty': 1003, 'witness': 9772, 'pair': 6050, 'weird': 9503, 'duke': 2346, 'rest': 6583, 'stops': 7330, 'sleeping': 7085, 'obvious': 5602, 'generation': 3141, 'trying': 9037, 'each': 2359, 'circumstances': 1730, 'reveal': 6599, 'fish': 2895, 'water': 9448, 'encounters': 2426, 'actually': 141, 'team': 7527, 'perhaps': 6132, 'released': 6530, 'last': 4635, 'week': 9499, 'opportunity': 5917, 'our': 5972, 'protagonists': 6353, 'join': 4498, 'final': 2860, 'sight': 7034, 'fear': 2721, 'hunt': 3784, 'thousands': 8614, 'focus': 2921, 'telling': 7547, 'showing': 7016, 'loved': 4885, 'appreciate': 647, 'pleasantly': 6205, 'surprised': 7464, 'evening': 2536, 'house': 3747, 'you think': 9963, 'think you': 8460, 'you re': 9954, 're in': 6442, 'in for': 3886, 'the premise': 8121, 'premise of': 6285, 'takes place': 7498, 'or so': 5936, 'going through': 3225, 'the middle': 8024, 'but this': 1473, 'are no': 678, 'years and': 9897, 'to do': 8749, 'do the': 2220, 'the question': 8133, 'he can': 3495, 'the help': 7941, 'help of': 3561, 'to his': 8792, 'his son': 3683, 'there in': 8360, 'in their': 3970, 'br but': 1272, 'the point': 8114, 'point of': 6228, 'of having': 5646, 'when his': 9581, 'idea of': 3794, 'off in': 5774, 'father and': 2714, 'and son': 501, 'best of': 1087, 'the beauty': 7753, 'beauty of': 1004, 'development of': 2125, 'the father': 7873, 'having to': 3491, 'out in': 5985, 'the car': 7778, 'we see': 9485, 'trying to': 9038, 'to each': 8754, 'each other': 2361, 'on his': 5815, 'the son': 8188, 'an adult': 327, 'is quite': 4214, 'through the': 8630, 'the many': 8016, 'quite well': 6406, 'br it': 1290, 'and having': 425, 'the opportunity': 8083, 'opportunity to': 5918, 'the final': 7897, 'final scene': 2861, 'scene in': 6756, 'and you': 566, 'feel the': 2733, 'thousands of': 8615, 'as to': 781, 'up the': 9157, 'of and': 5622, 'focus on': 2922, 'it certainly': 4308, 'thought of': 8605, 'them for': 8325, 'don miss': 2269, 'surprised that': 7465, 'was still': 9387, 'in the middle': 3954, 'but this is': 1475, 'this is not': 8509, 'and there are': 528, 'there are no': 8353, 'to do the': 8752, 'out of the': 5995, 'the help of': 7942, 'br br but': 1223, 'the point of': 8115, 'the idea of': 7957, 'the best of': 7758, 'to each other': 8755, 'br br it': 1238, 'gone': 3232, 'trouble': 9023, 'points': 6237, 'care': 1581, 'given': 3191, 'creature': 1959, 'direct': 2176, 'digital': 2170, 'lit': 4790, 'ridiculous': 6618, 'effective': 2387, 'flow': 2917, 'needed': 5429, 'established': 2505, 'merely': 5104, 'seems': 6862, 'amateurish': 309, 'twists': 9067, 'numerous': 5596, 'predictable': 6279, 'doubt': 2295, 'evil': 2566, 'surface': 7462, 'seem': 6852, 'fail': 2652, 'mental': 5097, 'health': 3540, 'patient': 6088, 'deaths': 2055, 'psychiatrist': 6364, 'capable': 1571, 'wasn': 9415, 'impressive': 3860, 'introduction': 4077, 'odd': 5611, 'choice': 1709, 'religion': 6535, 'background': 912, 'us': 9170, 'importantly': 3853, 'everything': 2557, 'wrong': 9885, 'fine': 2874, 'respect': 6578, 'intelligence': 4043, 'line': 4773, 'instead': 4036, 'others have': 5968, 'have gone': 3455, 'like to': 4757, 'about this': 74, 'film there': 2826, 'may be': 5034, 'don care': 2257, 'enough to': 2468, 'out br': 5978, 'given the': 3192, 'was quite': 9379, 'quite good': 6405, 'good it': 3248, 'it actually': 4282, 'to video': 8914, 'and it': 439, 'parts of': 6076, 'film to': 2828, 'understand the': 9103, 'the director': 7832, 'but in': 1429, 'this to': 8573, 'needed to': 5430, 'as is': 749, 'is it': 4170, 'my mind': 5383, 'that some': 7678, 'some kind': 7147, 'end br': 2429, 'this may': 8521, 'seem like': 6853, 'characters in': 1672, 'fail to': 2653, 'any kind': 603, 'first of': 2884, 'all over': 253, 'why would': 9680, 'capable of': 1572, 'made of': 4921, 'the background': 7743, 'care about': 1582, 'just as': 4520, 'would go': 9853, 'go through': 3212, 'the place': 8106, 'everything that': 2562, 'wrong with': 9886, 'with it': 9734, 'didn even': 2151, 'to give': 8780, 'bottom line': 1185, 'about this film': 75, 'out br br': 5979, 'of this film': 5744, 'this film to': 8492, 'might have been': 5124, 'some kind of': 7148, 'the end br': 7847, 'end br br': 2430, 'in this film': 3975, 'first of all': 2885, 'that it was': 7649, 'honest': 3711, 'laughs': 4652, 'cause': 1624, 'works': 9818, 'wife': 9683, 'same': 6703, 'type': 9077, 'admit': 160, 'string': 7372, 'strange': 7359, 'troubled': 9024, 'relate': 6520, 'own': 6034, 'dreams': 2320, 'second': 6815, 'third': 8464, 'realized': 6470, 'hidden': 3614, 'passed': 6080, 'hope': 3718, 'it great': 4333, 'how this': 3761, 'the thing': 8226, 'be honest': 973, 'my wife': 5389, 'didn really': 2156, 'go for': 3207, 'for it': 2962, 'the same': 8155, 'same way': 6705, 'way but': 9454, 'but she': 1456, 'type of': 9078, 'she did': 6955, 'put together': 6388, 'together and': 8932, 'and probably': 488, 'these characters': 8386, 'characters who': 1678, 'give me': 3184, 'something to': 7177, 'relate to': 6521, 'my own': 5387, 'and be': 369, 'you are': 9915, 'them in': 8326, 'watching this': 9445, 'that there': 7684, 'what can': 9548, 'liked it': 4762, 'see more': 6834, 'for me to': 2969, 'to be honest': 8711, 'in the same': 3961, 'the same way': 8157, 'watching this movie': 9447, 'that there are': 7685, 'desire': 2106, 'name': 5395, 'veteran': 9236, 'cop': 1899, 'relationship': 6523, 'mafia': 4929, 'criminals': 1972, 'loyal': 4898, 'brutal': 1383, 'corrupt': 1908, 'slow': 7090, 'frame': 3045, 'reaction': 6450, 'serial': 6905, 'killer': 4572, 'explained': 2612, 'detail': 2117, 'childhood': 1703, 'abuse': 88, 'child': 1702, 'menacing': 5096, 'deserves': 2102, 'majority': 4941, 'thanks': 7590, 'coming': 1815, 'terms': 7561, 'attitude': 864, 'recently': 6495, 'decided': 2062, 'dennis': 2084, 'sleep': 7084, 'with little': 9736, 'and only': 476, 'desire to': 2107, 'to keep': 8799, 'that has': 7628, 'relationship with': 6525, 'with his': 9733, 'his family': 3662, 'do something': 2218, 'to kill': 8801, 'people to': 6104, 'make an': 4943, 'an example': 341, 'than the': 7583, 'slow motion': 7092, 'the actor': 7724, 'serial killer': 6906, 'far too': 2701, 'too much': 8952, 'reason for': 6485, 'that is': 7641, 'very very': 9233, 'not being': 5519, 'the killer': 7970, 'movie and': 5239, 'the majority': 8010, 'majority of': 4942, 'thanks to': 7591, 'coming to': 1818, 'he should': 3527, 'the characters': 7790, 'on tv': 5840, 'tv and': 9057, 'decided to': 2063, 'it because': 4296, 'it had': 4334, 'could not': 1922, 'and should': 495, 'just have': 4529, 'the movie and': 8038, 'movie and the': 5241, 'the majority of': 8011, 'of the characters': 5705, 'hated': 3437, 'worst': 9833, 'earth': 2367, 'wasted': 9423, 'disappointed': 2191, 'girls': 3181, 'confused': 1856, 'confusing': 1857, 'the worst': 8293, 'worst film': 9834, 'film on': 2817, 'on earth': 5810, 'my time': 5388, 'time watching': 8670, 'watching it': 9442, 'the cover': 7815, 'and on': 473, 'the back': 7741, 'back the': 907, 'film it': 2806, 'it looks': 4365, 'pretty good': 6299, 'but was': 1481, 'was wrong': 9413, 'bad but': 918, 'but when': 1484, 'when saw': 9586, 'she was': 6968, 'was totally': 9402, 'and bad': 368, 'and really': 490, 'didn know': 2154, 'know how': 4592, 'the girls': 7923, 'was trying': 9404, 'was in': 9356, 'in some': 3933, 'enjoy it': 2455, 'at all': 809, 'all but': 238, 'film just': 2809, 'see if': 6831, 'if it': 3807, 'but it': 1434, 'it didn': 4317, 'dull and': 2348, 'and did': 382, 'boring and': 1175, 'and don': 389, 'don think': 2273, 'many other': 4994, 'other people': 5962, 'well as': 9507, 'the worst film': 8294, 'the film it': 7888, 'was trying to': 9405, 'trying to be': 9039, 'to see if': 8863, 'if it was': 3809, 'as well as': 786, 'wayne': 9467, 'plays': 6202, 'harris': 3403, 'united': 9123, 'states': 7290, 'responsible': 6581, 'opening': 5910, 'international': 4059, 'late': 4637, 'perry': 6135, 'pushed': 6380, 'forced': 3010, 'later': 4639, 'worked': 9814, 'details': 2118, 'felt': 2743, 'honor': 3715, 'true': 9026, 'shown': 7018, 'according': 98, 'romance': 6657, 'fiction': 2758, 'surprise': 7463, 'says': 6743, 'please': 6206, 'thank': 7587, 'able': 58, 'play': 6193, 'seemed': 6857, 'indeed': 4004, 'unusual': 9141, 'role': 6648, 'photos': 6154, 'practically': 6274, 'resemblance': 6576, 'casting': 1614, 'watchable': 9434, 'likable': 4737, 'fight': 2762, 'apparently': 632, 'incident': 3994, 'tend': 7554, 'the united': 8252, 'united states': 9124, 'responsible for': 6582, 'the late': 7978, 'upon the': 9165, 'the japanese': 7964, 'as many': 756, 'many of': 4992, 'all this': 265, 'is true': 4254, 'shown in': 7019, 'according to': 99, 'to some': 8877, 'some other': 7155, 'found the': 3040, 'the romance': 8151, 'is much': 4183, 'much of': 5344, 'br my': 1295, 'my first': 5376, 'time saw': 8663, 'was one': 9373, 'when he': 9580, 'he says': 3524, 'thank you': 7588, 'man who': 4979, 'man of': 4977, 'of action': 5616, 'action and': 120, 'is able': 4094, 'able to': 59, 'to play': 8839, 'play the': 6194, 'can think': 1559, 'think of': 8454, 'too many': 8951, 'actors in': 134, 'who would': 9660, 'this role': 8562, 've seen': 9210, 'to him': 8791, 'all br': 236, 'is still': 4228, 'cinematography is': 1729, 'is nice': 4188, 'some nice': 7150, 'film you': 2838, 'you find': 9931, 'find out': 2866, 'bit more': 1128, 'more about': 5194, 'real life': 6461, 'him out': 3641, 'on what': 5842, 've read': 9209, 'he got': 3505, 'is an': 4105, 'tend to': 7555, 'to believe': 8722, 'it also': 4286, 'example of': 2573, 'of john': 5661, 'the united states': 8253, 'in the late': 3953, 'many of the': 4993, 'all this is': 266, 'much of the': 5345, 'br br my': 1241, 'saw this movie': 6729, 'this movie was': 8546, 'was one of': 9374, 'is able to': 4095, 'can think of': 1560, 'would have been': 9855, 'by the way': 1509, 'at all br': 811, 'all br br': 237, 'and the acting': 510, 'and the way': 521, 'this is an': 8503, 'matter': 5026, 'figure': 2766, 'clear': 1743, 'haven': 3488, 'spent': 7225, 'angles': 578, 'funniest': 3107, 'purpose': 6377, 'chosen': 1715, 'remind': 6546, 'hunting': 3786, 'stars': 7270, 'ok': 5790, 'pity': 6177, 'west': 9544, 'planning': 6190, 'away': 885, 'advice': 170, 'use': 9176, 'filming': 2841, 'ability': 56, 'story is': 7342, 'that does': 7616, 'figure out': 2767, 'out to': 6002, 'clear that': 1744, 'his work': 3688, 'work on': 9811, 'this the': 8570, 'do not': 2216, 'the message': 8022, 'the funniest': 7916, 'make the': 4951, 'but have': 1421, 'never heard': 5450, 'heard of': 3544, 'it will': 4440, 'will have': 9692, 'is ok': 4199, 'has not': 3424, 'more time': 5208, 'time to': 8668, 'story it': 7343, 'is as': 4109, 'as if': 744, 'was more': 9365, 'because you': 1019, 'you should': 9960, 'make movie': 4948, 'can make': 1549, 'movie but': 5248, 'but not': 1446, 'not all': 5511, 'as good': 738, 'you want': 9968, 'your time': 9993, 'and not': 468, 'the ability': 7719, 'so don': 7108, 'the story is': 8206, 'if you can': 3824, 'the movie the': 8049, 'to make the': 8817, 'never heard of': 5451, 'as if the': 746, 'flicks': 2913, 'extremely': 2628, 'sub': 7402, 'par': 6055, 'gory': 3267, 'cult': 1987, 'classics': 1741, 'thus': 8643, 'leaving': 4682, 'lacking': 4619, 'areas': 702, 'ultimately': 9086, 'previously': 6303, 'focuses': 2924, 'theme': 8330, 'ultimate': 9085, 'unknown': 9128, 'dies': 2162, 'apparent': 631, 'stomach': 7325, 'aren': 703, 'sad': 6690, 'ghost': 3170, 'trapped': 8995, 'death': 2052, 'daughter': 2024, 'attempts': 859, 'sell': 6885, 'slightly': 7088, 'reminiscent': 6553, 'writer': 9877, 'appear': 636, 'gordon': 3263, 'fit': 2897, 'every': 2546, 'quickly': 6400, 'desperately': 2109, 'members': 5085, 'surprising': 7467, 'nightmare': 5471, 'sequence': 6903, 'zombies': 9998, 'overall': 6024, 'mediocre': 5075, 'talents': 7506, 'unless': 9129, 'all time': 269, 'time but': 8654, 'made for': 4915, 'for tv': 2999, 'tv movie': 9058, 'is extremely': 4140, 'not what': 5556, 'come to': 1792, 'to expect': 8762, 'expect from': 2599, 'like some': 4749, 'lacking in': 4620, 'in both': 3875, 'and ultimately': 545, 'very good': 9227, 'good the': 3257, 'plot that': 6218, 'has been': 3411, 'many times': 4998, 'but still': 1458, 'it an': 4288, 'an idea': 346, 'an interesting': 347, 'focuses on': 2925, 'the theme': 8225, 'theme of': 8331, 'which is': 9611, 'the ultimate': 8251, 'after he': 182, 'of an': 5621, 'many people': 4995, 'people that': 6103, 'see him': 6828, 'that his': 7636, 'so he': 7112, 'decides to': 2065, 'try and': 9035, 'death and': 2053, 'and his': 429, 'is his': 4162, 'his daughter': 3660, 'the style': 8215, 'style of': 7399, 'attempts to': 861, 'to sell': 8870, 'film ve': 2829, 'is nothing': 4194, 'reminiscent of': 6554, 'for that': 2983, 'appear to': 638, 'because of': 1010, 'film from': 2793, 'lot better': 4860, 'better the': 1103, 'film does': 2788, 'style and': 7398, 'the score': 8164, 'score is': 6791, 'is rather': 4215, 'every scene': 2548, 'and most': 460, 'the scenes': 8162, 'or the': 5939, 'was made': 9362, 'so it': 7116, 'it all': 4284, 'little bit': 4793, 'gore and': 3265, 'this isn': 8514, 'isn the': 4277, 'we all': 9469, 'all know': 247, 'and love': 451, 'overall this': 6026, 'not good': 5530, 'not worth': 5557, 'unless you': 9130, 'of all time': 5620, 'made for tv': 4916, 'that the film': 7681, 'which is the': 9612, 'to try and': 8909, 'saw this film': 6728, 'this film on': 8490, 'of the most': 5719, 'there is nothing': 8364, 'of the great': 5714, 'the film does': 7883, 'and most of': 461, 'of the scenes': 5726, 'we all know': 9470, 'wells': 9526, 'century': 1632, 'claim': 1735, 'science': 6784, 'stories': 7332, 'profound': 6340, 'tales': 7507, 'greatest': 3303, 'evidence': 2564, 'believed': 1071, 'richard': 6615, 'introduced': 4075, 'thinking': 8461, 'seed': 6845, 'adapted': 147, 'novel': 5579, 'unable': 9089, 'difference': 2163, 'writing': 9880, 'novels': 5580, 'often': 5786, 'unconvincing': 9095, 'case': 1602, 'sides': 7032, 'nature': 5410, 'naked': 5394, 'hitler': 3695, 'anti': 599, 'painfully': 6047, 'impossible': 3854, 'conversation': 1890, 'opposite': 5921, 'number': 5593, '1940': 18, 'striking': 7371, 'haunting': 3441, 'phantom': 6148, 'army': 708, 'society': 7137, 'wonderfully': 9792, 'lazy': 4660, 'storytelling': 7356, 'year': 9891, 'compelling': 1836, 'arthur': 718, 'ask': 794, 'universe': 9126, 'shall': 6942, 'easy': 2373, 'forgive': 3020, 'be very': 992, 'very little': 9230, 'has some': 3428, 'science fiction': 6785, 'that people': 7668, 'there no': 8370, 'and one': 474, 'one can': 5858, 'can help': 1546, 'things to': 8446, 'to come': 8735, 'from his': 3073, 'his own': 3679, 'he is': 3509, 'unable to': 9090, 'to tell': 8886, 'tell the': 7545, 'the difference': 7829, 'between the': 1107, 'is often': 4198, 'point is': 6227, 'the two': 8246, 'the nature': 8062, 'nature of': 5411, 'of war': 5757, 'one another': 5852, 'why this': 9679, 'it be': 4295, 'impossible to': 3855, 'few years': 2756, 'years later': 9900, 'br that': 1310, 'that said': 7671, 'place in': 6180, 'as child': 731, 'fear of': 2722, 'showing the': 7017, 'the year': 8302, 'the setting': 8178, 'that makes': 7654, 'makes this': 4964, 'makes the': 4963, 'film so': 2822, 'and to': 540, 'be in': 974, 'in short': 3931, 'is film': 4143, 'easy to': 2374, 'is the most': 4243, 'that he is': 7633, 'and it is': 441, 'br br that': 1253, 'in the background': 3940, 'this is film': 8504, 'lost': 4857, 'faith': 2663, 'main': 4935, 'earned': 2366, 'cinema': 1725, 'dvd': 2355, 'rented': 6561, 'okay': 5791, 'huge': 3770, 'hardly': 3401, 'cry': 1984, 'crying': 1985, 'touch': 8967, 'sweet': 7481, 'falling': 2671, 'underrated': 9099, 'call': 1517, 'modern': 5169, 'couples': 1933, 'marriage': 5007, 'aware': 883, 'tradition': 8985, 'present': 6289, 'wedding': 9498, 'meets': 5079, 'parents': 6057, 'married': 5008, 'showed': 7014, 'excited': 2585, 'song': 7183, 'soon': 7187, 'families': 2680, 'occurs': 5610, 'chemistry': 1698, 'girl': 3175, 'smoking': 7101, 'leads': 4666, 'trip': 9019, 'factor': 2649, 'treated': 9000, 'finally': 2863, 'happiness': 3394, 'performances': 6122, 'date': 2021, 'innocent': 4023, 'root': 6664, 'support': 7447, 'share': 6947, 'cute': 1998, 'surely': 7461, 'staying': 7296, 'opens': 5913, 'connect': 1859, 'direction': 2180, 'spot': 7246, 'pull': 6369, 'hours': 3745, 'fake': 2665, 'pulled': 6370, 'connected': 1860, 'songs': 7184, 'rarely': 6426, 'person': 6136, 'to waste': 8915, 'out on': 5997, 'on dvd': 5809, 'and watched': 550, 'and loved': 452, 'loved the': 4887, 'this time': 8572, 'it right': 4395, 'was not': 9370, 'huge fan': 3771, 'in movie': 3909, 'movie made': 5283, 'made me': 4920, 'feel like': 2730, 'in love': 3902, 'then there': 8341, 'you in': 9940, 'is just': 4171, 'just too': 4541, 'and will': 560, 'have you': 3487, 'love with': 4884, 'story of': 7346, 'movie you': 5312, 'you might': 9949, 'times but': 8679, 'but to': 1479, 'it seemed': 4396, 'which are': 9606, 'done in': 2285, 'people don': 6097, 'believe in': 1064, 'but do': 1417, 'will always': 9686, 'time they': 8666, 'how it': 3755, 'is and': 4107, 'and my': 465, 'saying that': 6742, 'how they': 3760, 'they got': 8409, 'in way': 3984, 'is how': 4164, 'you feel': 9930, 'the song': 8189, 'back to': 909, 'yes it': 9906, 'movie which': 5308, 'is really': 4217, 'really good': 6477, 'the last': 7977, 'br what': 1333, 'the chemistry': 7795, 'chemistry between': 1699, 'for each': 2951, 'boy and': 1194, 'it very': 4424, 'about his': 65, 'the girl': 7922, 'then it': 8337, 'them all': 8318, 'then that': 8339, 'they really': 8419, 'it makes': 4369, 'you just': 9941, 'watch the': 9429, 'the couple': 7812, 'they have': 8411, 'her and': 3569, 'sorry for': 7191, 'because she': 1012, 'she has': 6963, 'bad and': 914, 'and makes': 455, 'see her': 6827, 'and when': 555, 'when she': 9587, 'her the': 3589, 'fall in': 2668, 'she finds': 6959, 'her to': 3590, 'and also': 359, 'character is': 1658, 'is shown': 4220, 'performances and': 6123, 'is amazing': 4104, 'her best': 3571, 'with this': 9756, 'film he': 2797, 'is her': 4160, 'an amazing': 330, 'and have': 424, 'never seen': 5453, 'you to': 9964, 'me was': 5059, 'where they': 9600, 'they will': 8427, 'between them': 1109, 'just the': 4539, 'will see': 9699, 'the direction': 7831, 'direction is': 2182, 'good movie': 3251, 'something that': 7176, 'me in': 5048, 'is being': 4118, 'them to': 8329, 'me this': 5055, 'and for': 405, 'the songs': 8190, 'when you': 9593, 'saw the': 6726, 'playing the': 6201, 'music is': 5360, 'do we': 2223, 'feel good': 2729, 'movie after': 5236, 'seen it': 6873, 'will make': 9693, 'make you': 4955, 'and make': 454, 'be better': 965, 'and many': 456, 'of your': 5767, 'well this': 9519, 'say that': 6735, 'that why': 7708, 'why do': 9672, 'just that': 4538, 'will find': 9690, 'why the': 9677, 'huge fan of': 3772, 'but this movie': 1476, 'in this movie': 3976, 'movie is just': 5272, 'in love with': 3903, 'br the story': 1317, 'the story of': 8208, 'and this movie': 535, 'for the first': 2985, 'back to the': 910, 'to the story': 8896, 'br br what': 1264, 'want to watch': 9305, 'to watch the': 8919, 'you want to': 9969, 'want to see': 9304, 'fall in love': 2669, 'have never seen': 3463, 'to the film': 8890, 'and there is': 529, 'to the movie': 8891, 'have seen the': 3474, 'as they are': 778, 'the music is': 8055, 'have seen it': 3473, 'want to be': 9303, 'say that the': 6736, 'this movie and': 8524, 'hong': 3713, 'kong': 4607, 'jackie': 4459, 'drug': 2335, 'girlfriend': 3180, 'features': 2726, 'stunts': 7393, 'stunt': 7392, 'club': 1761, 'went': 9527, 'hospital': 3737, 'incredible': 4002, 'fights': 2765, 'park': 6059, 'ranks': 6421, 'finest': 2875, 'award': 881, 'chan': 1640, 'loves': 4892, 'martial': 5011, 'hong kong': 3714, 'modern day': 5170, 'same time': 6704, 'care of': 1584, 'of young': 5766, 'young woman': 9983, 'the bad': 7744, 'bad guys': 922, 'and still': 502, 'his girlfriend': 3669, 'from other': 3077, 'other actors': 5956, 'who are': 9632, 'now in': 5583, 'three of': 8619, 'went to': 9530, 'film br': 2781, 'movie also': 5238, 'have some': 3476, 'as one': 759, 'for best': 2950, 'and at the': 367, 'at the same': 836, 'the same time': 8156, 'the bad guys': 7746, 'the film br': 7881, 'film br br': 2782, 'as one of': 760, 'children': 1705, 'dinosaurs': 2174, 'somewhat': 7179, 'land': 4627, 'original': 5947, 'heart': 3546, 'pathetic': 6087, 'numbers': 5595, 'soul': 7195, 'rex': 6612, 'of their': 5737, 've got': 9206, 'time the': 8665, 'the original': 8085, 'that movie': 7659, 'movie had': 5261, 'doesn mean': 2243, 'story and': 7335, 'the children': 7797, 'no plot': 5485, 'plot the': 6219, 'premise is': 6284, 'stupid and': 7395, 'not as': 5513, 'away from': 887, 'from being': 3071, 'it to the': 4418, 'this movie has': 8534, 'fabulous': 2635, 'adaptation': 145, 'eyre': 2634, 'problem': 6321, 'stronger': 7375, 'annoyed': 590, 'portrayal': 6251, 'rochester': 6643, 'asks': 797, 'marry': 5010, 'runs': 6681, 'dalton': 2004, '100': 7, 'perfect': 6110, 'complaint': 1838, 'definitely': 2071, 'adaptation of': 146, 'jane eyre': 4466, 'was that': 9392, 'that didn': 7615, 'didn like': 2155, 'was too': 9401, 'too old': 8953, 'old and': 5793, 'and made': 453, 'much to': 5348, 'the book': 7767, 'seemed like': 6858, 'character was': 1662, 'was really': 9381, 'by this': 1511, 'portrayal of': 6252, 'the part': 8093, 'where it': 9597, 'to marry': 8820, 'him and': 3631, 'and she': 493, 'makes me': 4961, 'me laugh': 5051, 'they made': 8414, 'her but': 3575, 'he makes': 3517, 'this version': 8576, 'version of': 9217, 'worth seeing': 9840, 'thing that': 8437, 'made this': 4923, 'not quite': 5544, 'the quality': 8131, 'quality of': 6393, 'know it': 4594, 'made in': 4917, 'film and': 2775, 'and better': 374, 'however is': 3765, 'in the book': 3942, 'the quality of': 8132, 'it was made': 4430, 'was made in': 9363, 'made in the': 4918, 'it would have': 4448, 'bored': 1172, 'length': 4696, 'provides': 6361, 'moved': 5231, 'guilt': 3333, 'particularly': 6071, 'heroes': 3608, 'among': 317, 'weak': 9490, 'spy': 7249, 'notably': 5559, 'country': 1930, 'remarkable': 6541, 'enjoyed': 2459, 'an extremely': 343, 'before it': 1037, 'interesting but': 4057, 'but its': 1440, 'for its': 2963, 'in your': 3993, 'br if': 1286, 'find it': 2865, 'story that': 7349, 'among the': 318, 'the evil': 7861, 'his friends': 3668, 'and family': 399, 'who has': 9641, 'br there': 1319, 'there isn': 8368, 'character in': 1656, 'the entire': 7855, 'watching the': 9443, 'really enjoyed': 6476, 'enjoyed it': 2460, 'well worth': 9522, 'for people': 2976, 'who like': 9647, 'br br if': 1236, 'br if you': 1287, 'if you are': 3823, 'because it is': 1008, 'br br there': 1255, 'character in the': 1657, 'bette': 1094, 'voice': 9274, 'highlight': 3621, 'rose': 6665, 'emotion': 2418, 'leave': 4676, 'store': 7331, 'and am': 361, 'what it': 9559, 'it takes': 4410, 'you the': 9962, 'with me': 9739, 'from her': 3072, 'end up': 2437, 'leave you': 4679, 'to go': 8782, 'movie or': 5288, 'go to the': 3214, 'waiting': 9285, 'content': 1876, 'conventional': 1889, 'romantic': 6658, 'lovers': 4891, 'period': 6134, 'quiet': 6401, 'herself': 3611, 'dialogs': 2133, 'appropriate': 652, 'editing': 2383, 'bollywood': 1163, 'offer': 5781, 'movie from': 5260, 'long time': 4827, 'time it': 8659, 'it really': 4393, 'start of': 7274, 'but there': 1466, 'from an': 3070, 'life to': 4732, 'to new': 8829, 'is what': 4262, 'what this': 9571, 'all about': 233, 'the period': 8102, 'with their': 9753, 'acting is': 115, 'she could': 6954, 'could have': 1918, 'story was': 7352, 'was well': 9409, 'more or': 5205, 'or less': 5932, 'the editing': 7843, 'good job': 3249, 'here to': 3605, 'would say': 9866, 'combination of': 1783, 'but there is': 1468, 'this is what': 8513, 'the acting is': 7721, 'the story was': 8210, 'more or less': 5206, 'mel': 5080, 'reynolds': 6613, 'maybe': 5039, 'wise': 9713, 'players': 6199, 'recommend': 6497, 'students': 7386, 'attempt': 853, 'then you': 8346, 'yet another': 9909, 'so bad': 7104, 'bad it': 924, 'it could': 4311, 'never be': 5446, 'can only': 1551, 'the dvd': 7838, 'maybe the': 5042, 'version is': 9216, 'is better': 4119, 'the movies': 8052, 'been so': 1032, 'it wasn': 4436, 'on your': 5845, 'will never': 9694, 'be able': 960, 'film if': 2798, 'you do': 9925, 'attempt to': 855, 'so bad it': 7105, 'if you don': 3826, 'be able to': 961, 'film if you': 2799, 'if you do': 3825, 'junk': 4516, 'move': 5230, 'wreck': 9874, 'talks': 7514, 'graphics': 3285, 'ride': 6617, 'trees': 9004, 'fighting': 2764, 'enemy': 2449, 'wouldn': 9869, 'renting': 6563, 'this game': 8497, 'made by': 4914, 'the camera': 7776, 'is your': 4270, 'part in': 6065, 'the game': 7918, 'in to': 3980, 'there and': 8349, 'you never': 9953, 'off the': 5776, 'the main': 8006, 'main character': 4936, 'though he': 8596, 'him the': 3643, 'is the worst': 4247, 'the main character': 8007, 'perspective': 6143, 'fictional': 2759, 'easily': 2370, 'hatred': 3439, 'plans': 6191, 'format': 3025, 'held': 3556, 'perfectly': 6112, 'reminds': 6550, 'eric': 2491, 'murdered': 5353, '12': 9, 'media': 5073, 'storm': 7333, 'followed': 2931, 'basement': 950, 'market': 5005, 'single': 7058, 'attempted': 856, 'ten': 7551, 'hour': 3741, 'half': 3360, 'guarantee': 3325, 'should see': 7001, 'things in': 8443, 'watched it': 9436, 'though it': 8597, 'that could': 7612, 'to your': 8928, 'it shows': 4404, 'school and': 6781, 'not have': 5532, 'have worked': 3486, 'in any': 3871, 'any other': 608, 'the media': 8020, 'wanted to': 9307, 'and everyone': 397, 'of our': 5685, 'the kid': 7968, 'the monster': 8031, 'it did': 4316, 'did not': 2145, 'and few': 402, 'see what': 6843, 'the big': 7762, 'believe this': 1070, 'best film': 1083, 'the few': 7876, 'ten minutes': 7552, 'minutes of': 5150, 'hour and': 3742, 'and half': 422, 'film because': 2780, 'and what': 554, 'what they': 9570, 'they did': 8402, 'that point': 7669, 'have not': 3466, 'seen this': 6876, 'watch it': 9428, 'when it': 9582, 'this movie at': 8527, 'movie is about': 5271, 'wanted to see': 9308, 'to see the': 8866, 'br this movie': 1326, 'we get to': 9477, 'get to see': 3165, 'thing about this': 8433, 'about this movie': 76, 'to see what': 8868, 'is the best': 4239, 'of the few': 5708, 'minutes of the': 5151, 'hour and half': 3743, 'seen this movie': 6878, 'you will be': 9974, 'issues': 4279, 'overlooked': 6030, 'key': 4560, 'understanding': 9106, 'stunning': 7391, 'watches': 9440, 'unique': 9122, 'appears': 644, 'computer': 1845, 'kim': 4577, 'battle': 957, 'taken': 7496, 'excellent': 2576, 'myself': 5390, 'insane': 4024, 'hysterical': 3791, 'beat': 997, 'corner': 1904, 'heavily': 3553, 'western': 9545, 'mistakes': 5162, 'fill': 2770, 'silence': 7038, 'heroine': 3610, 'factory': 2650, 'sheer': 6970, 'value': 9193, 'note': 5561, 'constant': 1870, 'noise': 5494, 'reference': 6510, 'princess': 6311, 'flying': 2919, 'ship': 6974, 'technical': 7530, 'definite': 2070, 'copy': 1901, 'force': 3009, 'across': 107, 'belief': 1061, 'limited': 4771, 'purely': 6375, 'offensive': 5780, 'weapon': 9492, 'technology': 7533, 'developed': 2122, 'whatever': 9577, 'called': 1519, '60': 45, 'series': 6907, 'weren': 9541, 'battles': 958, 'improved': 3861, 'fortunately': 3029, 'continues': 1881, 'seem to': 6854, 'seen as': 6869, 'person who': 6137, 'use of': 9177, 'appears to': 645, 'at time': 843, 'time when': 8671, 'against the': 202, 'can be': 1537, 'be taken': 987, 'an excellent': 342, 'every time': 2550, 'has one': 3427, 'that ve': 7699, 've heard': 9207, 'deal with': 2043, 'first one': 2887, 'one the': 5883, 'the need': 8063, 'need to': 5427, 'to fill': 8769, 'in every': 3879, 'in film': 3884, 'music and': 5359, 'while the': 9624, 'well and': 9506, 'it interesting': 4344, 'interesting to': 4058, 'attempts at': 860, 'there wasn': 8379, 'to use': 8913, 'and has': 423, 'and her': 428, 'similar to': 7044, 'the ship': 8180, 'copy of': 1902, 'that comes': 7611, 'comes across': 1803, 'chance to': 1642, 'the audience': 7738, 'than in': 7577, 'far more': 2699, 'is far': 4142, 'instead of': 4038, 'if only': 3812, 'looked like': 4837, 'or whatever': 5943, 'the second': 8170, 'br finally': 1279, 'very interesting': 9229, 'seem to be': 6855, 'appears to be': 646, 'when it was': 9585, 'the first one': 7903, 'such as the': 7419, 'due to the': 2345, 'in the original': 3956, 'br br finally': 1229, 'packed': 6041, 'intriguing': 4074, 'achieve': 104, 'dream': 2319, 'famous': 2683, 'player': 6198, 'offered': 5782, 'position': 6257, 'local': 4817, 'faces': 2641, 'determined': 2120, 'inspired': 4030, 'choices': 1710, 'needs': 5434, 'it like': 4362, 'has an': 3409, 'is trying': 4256, 'her life': 3583, 'to become': 8718, 'and finally': 403, 'are so': 685, 'so many': 7118, 'that she': 7674, 'she is': 6964, 'would recommend': 9865, 'recommend it': 6498, 'for anyone': 2948, 'inspired by': 4031, 'people can': 6096, 'are really': 684, 'hope that': 3719, 'was at': 9336, 'it is about': 4346, 'is trying to': 4257, 'there are so': 8354, 'are so many': 686, 'aliens': 229, 'taste': 7522, 'enjoying': 2463, 'jake': 4462, 'inspiration': 4029, 'steal': 7298, 'whom': 9667, 'count': 1927, 'james': 4463, 'tired': 8686, 'dragged': 2308, 'existent': 2596, 'pay': 6091, 'those films': 8589, 'and say': 491, 'say the': 6738, 'director who': 2187, 'whom he': 9668, 'he looks': 3515, 'of blood': 5628, 'blood and': 1149, 'and gore': 418, 'either the': 2398, 'maybe it': 5041, 'short film': 6985, 'the actors': 7725, 'non existent': 5498, 'can see': 1555, 'he was': 3534, 'to pay': 8837, 'have done': 3451, 'done the': 2287, 'of his own': 5651, 'and the plot': 518, 'granted': 3283, 'mainly': 4938, 'sean': 6809, 'added': 150, 'ed': 2377, 'lawrence': 4657, 'seeking': 6851, 'prison': 6316, 'racist': 6411, 'aspects': 801, 'officer': 5785, 'locked': 4820, 'nasty': 5404, 'joy': 4506, 'enjoyed this': 2462, 'one has': 5863, 'it too': 4419, 'too the': 8954, 'story has': 7340, 'at first': 818, 'it seems': 4397, 'aspects of': 802, 'the case': 7779, 'however it': 3766, 'turns out': 9054, 'himself and': 3647, 'he did': 3498, 'well the': 9518, 'to point': 8840, 'to another': 8701, 'one who': 5888, 'to death': 8744, 'he takes': 3528, 'in what': 3986, 'what he': 9556, 'twists and': 9068, 'and turns': 543, 'it being': 4299, 'make sense': 4949, 'especially when': 2501, 'out what': 6004, 'they all': 8393, 'well in': 9513, 'makes for': 4959, 'up in the': 9153, 'trying to get': 9040, 'twists and turns': 9069, 'in this one': 3977, 'trying to make': 9041, 'of the whole': 5733, 'spoil': 7237, 'normal': 5506, 'everyday': 2552, 'street': 7362, 'driving': 2331, 'follows': 2935, 'events': 2538, 'include': 3995, 'account': 101, 'horribly': 3726, 'nowhere': 5588, 'making': 4967, 'usually': 9187, 'answers': 597, 'asking': 796, '20': 28, 'spoiler': 7238, 'area': 701, 'glass': 3199, 'happening': 3389, 'shouldn': 7002, 'figures': 2769, 'sisters': 7063, 'boyfriend': 1196, 'sadly': 6692, 'ends': 2446, 'seconds': 6819, 'threw': 8620, 'doesn make': 2242, 'film for': 2792, 'who actually': 9630, 'her own': 3585, 'take place': 7494, 'time that': 8664, 'comment on': 1820, 'film of': 2816, 'of how': 5654, 'acting was': 118, 'was great': 9354, 'great the': 3300, 'the events': 7860, 'great but': 3293, 'added to': 151, 'be made': 977, 'not sure': 5548, 'the writer': 8298, 'making this': 4970, '20 minutes': 29, 'they had': 8410, 'on all': 5800, 'why it': 9675, 'been the': 1033, 'guy who': 3342, 'movie for': 5259, 'don waste': 2277, 'waste your': 9421, 'nothing like': 5570, 'is made': 4177, 'the film for': 7884, 'on this film': 5835, 'the acting was': 7722, 'but the story': 1464, 'but this film': 1474, 'this film has': 8486, 'it was not': 4431, 'the film and': 7878, 'the film the': 7891, 'the guy who': 7933, 'this movie for': 8532, 'don waste your': 2278, 'waste your time': 9422, 'overrated': 6032, 'bands': 937, 'brothers': 1378, 'supporting': 7448, 'minds': 5140, 'channel': 1649, 'rid': 6616, 'some people': 7156, 'get away': 3152, 'away with': 890, 'with such': 9747, 'things that': 8445, 'no good': 5476, 'we have': 9479, 'that actually': 7593, 'are well': 699, 'well written': 9523, 'written and': 9883, 'and are': 364, 'are actually': 654, 'make this': 4953, 'the series': 8175, 'series and': 6908, 'and those': 536, 'people are': 6095, 'are all': 655, 'seems that': 6864, 'at how': 822, 'and thought': 537, 'thought that': 8607, 'are still': 688, 'of work': 5762, 'work and': 9803, 'other things': 5965, 'do with': 2224, 'their lives': 8314, 'is horrible': 4163, 'to stop': 8882, 'don like': 2267, 'are very': 697, 'young and': 9979, 'name is': 5396, 'the people': 8096, 'involved in': 4082, 'have all': 3442, 'shown on': 7020, 'get it': 3156, 'know that': 4595, 'but you': 1489, 'to make this': 8818, 'it seems that': 4399, 'that they were': 7691, 'to do with': 8753, 'that this is': 7694, 'you get the': 9933, 'per': 6109, 'almost': 281, 'meant': 5068, 'calling': 1521, 'four': 3042, 'soft': 7138, 'core': 1903, 'angle': 577, 'kick': 4562, 'commit': 1826, 'bank': 939, 'spoof': 7243, 'category': 1619, 'dare': 2016, 'days of': 2036, 'do and': 2211, 'the number': 8068, 'to call': 8728, 'to actually': 8695, 'movie on': 5287, 'as kid': 753, 'hours of': 3746, 'is because': 4117, 'because this': 1017, 'almost every': 284, 'scene that': 6761, 've been': 9203, 'it one': 4383, 'one that': 5882, 'on its': 5820, 'the perfect': 8098, 'but nothing': 1447, 'has to': 3430, 'in that': 3939, 'to do it': 8750, 'was in the': 9357, 'in the last': 3952, 'this was one': 8579, 'one of them': 5875, 'columbo': 1779, 'reached': 6447, 'falk': 2666, 'uninspired': 9117, 'scenery': 6767, 'andrew': 571, 'lady': 4623, 'delivery': 2081, 'plots': 6222, 'scripts': 6807, 'sharp': 6949, 'movies have': 5319, 'for years': 3005, 'this year': 8585, 'it may': 4370, 'gives the': 3195, 'performance and': 6115, 'this series': 8564, 'is always': 4103, 'the scenery': 8161, 'is pretty': 4210, 'script was': 6806, 'and its': 443, 'they should': 8421, 'never have': 5449, 'with one': 9743, 'one or': 5877, 'or two': 5941, 'memories of': 5090, 'this movie as': 8526, 'one or two': 5878, 'entertaining': 2475, 'develops': 2126, 'chase': 1686, 'learn': 4669, 'flashbacks': 2905, 'sequences': 6904, 'serves': 6916, 'paced': 6037, 'climax': 1750, 'grow': 3318, 'roles': 6653, 'eventually': 2540, 'running': 6678, 'provided': 6360, 'step': 7304, 'false': 2676, 'create': 1952, 'process': 6328, 'learning': 4671, 'escaped': 2495, 'outside': 6010, 'an entertaining': 338, 'entertaining and': 2476, 'which the': 9616, 'the viewers': 8263, 'the three': 8229, 'main characters': 4937, 'fast paced': 2708, 'but as': 1409, 'about their': 72, 'and eventually': 395, 'why they': 9678, 'first place': 2889, 'much like': 5342, 'that we': 7704, 'to create': 8740, 'for us': 3001, 'way to': 9465, 'and all': 356, 'all three': 268, 'the process': 8127, 'ending of': 2443, 'film where': 2833, 'from their': 3086, 'still the': 7319, 'problem with': 6324, 'we see the': 9486, 'in the first': 3950, 'the first place': 7904, 'the characters in': 7793, 'away from the': 888, 'in the process': 3958, 'with this film': 9757, 'film is that': 2804, 'beach': 993, 'cage': 1514, 'blame': 1140, 'pat': 6085, 'cross': 1979, 'village': 9257, 'kinda': 4581, 'humor': 3777, 'situations': 7071, 'five': 2900, 'bucks': 1385, 'turn': 9045, 'fire': 2878, 'thought the': 8608, 'the beach': 7750, 'was bad': 9338, 'the greatest': 7928, 'him for': 3636, 'starts off': 7282, 'it goes': 4330, 'it just': 4361, 'makes no': 4962, 'no sense': 5488, 'sense and': 6891, 'don get': 2260, 'get me': 3157, 'what was': 9573, 'humor and': 3778, 'ability to': 57, 'be funny': 970, 'funny in': 3114, 'you go': 9934, 'go back': 3206, 'just say': 4536, 'your mind': 9990, 'of the greatest': 5715, 'what the hell': 9569, 'don get me': 2261, 'only thing that': 5903, 'to be funny': 8709, 'and this is': 534, 'is the only': 4245, 'wanna': 9299, 'typical': 9081, 'slasher': 7082, 'lowest': 4897, 'cameras': 1532, 'oscar': 5953, 'winning': 9710, '15': 12, 'drunk': 2337, 'conclusion': 1853, 'one night': 5871, 'the words': 8289, 'horror movie': 3732, 'laugh at': 4646, 'the low': 8005, 'bad acting': 913, 'really bad': 6473, 'so called': 7107, 'movies like': 5321, 'house of': 3749, 'good thing': 3258, 'of one': 5682, 'she had': 6962, 'had some': 3355, 'some very': 7164, 'very nice': 9232, 'the lines': 7995, 'is actually': 4099, 'bad this': 929, 'worst movie': 9835, 'enough for': 2466, 'so in': 7115, 'time or': 8662, 'but this was': 1478, 'of one of': 5683, 'this film was': 8493, 'the worst movie': 8295, 'outrageous': 6009, 'paint': 6048, 'dry': 2339, 'heat': 3551, 'worse': 9831, 'directors': 2189, 'drugs': 2336, 'became': 1005, 'shot': 6989, 'intelligent': 4044, 'caught': 1622, 'gun': 3335, 'bear': 994, 'more fun': 5199, 'at my': 827, 'the directors': 7833, 'was shot': 9383, 'in mind': 3906, 'will probably': 9697, 'give you': 3190, 'story to': 7351, 'as the movie': 775, 'that it would': 7650, 'some good': 7145, 'angel': 574, 'june': 4514, 'vincent': 9260, 'husband': 3788, 'chair': 1637, 'killing': 4574, 'dan': 2007, 'suspect': 7474, 'noir': 5493, 'pleasant': 6204, 'mystery': 5392, 'break': 1349, 'reactions': 6451, 'alone': 285, 'disappointment': 2193, 'her husband': 3581, 'the husband': 7955, 'to help': 8789, 'find the': 2868, 'role as': 6650, 'film noir': 2814, 'but then': 1465, 'at some': 832, 'the mystery': 8058, 'but what': 1483, 'not very': 5555, 'was never': 9368, 'good at': 3239, 'one was': 5887, 'was real': 9380, 'but this one': 1477, 'this one was': 8553, 'connection': 1861, 'tried': 9012, 'european': 2514, 'detective': 2119, 'relative': 6527, 'vague': 9192, 'allowed': 277, 'influence': 4016, 'medium': 5076, 'received': 6493, 'practice': 6275, 'movement': 5232, 'wing': 9708, 'figured': 2768, 'america': 314, 'vs': 9281, 'instance': 4034, '70s': 48, 'ignored': 3835, 'warning': 9322, 'york': 9912, 'returning': 6596, 'native': 5407, 'power': 6270, 'resolution': 6577, 'inspector': 4028, 'control': 1887, 'follow': 2929, 'importance': 3851, 'foreign': 3014, 'language': 4630, 'cannot': 1568, 'signs': 7037, 'criminal': 1971, 'killed': 4570, 'subject': 7403, 'spends': 7224, 'literally': 4791, 'viewed': 9252, 'chasing': 1688, 'tied': 8645, 'bed': 1024, 'cell': 1627, 'loss': 4855, 'significant': 7036, 'career': 1585, 'fate': 2712, 'accepted': 95, 'theory': 8347, 'popular': 6245, 'ironically': 4091, 'rare': 6425, 'facts': 2651, 'towards': 8975, 'focusing': 2926, 'traditional': 8986, 'shots': 6994, 'etc': 2509, 'rise': 6630, 'cold': 1770, 'disturbing': 2209, 'complex': 1842, 'thrillers': 8623, 'jean': 4472, 'complete': 1839, 'le': 4661, 'featured': 2725, 'gangster': 3127, 'powerful': 6272, 'partly': 6073, 'steps': 7307, 'burning': 1399, 'site': 7067, 'stand': 7254, 'anywhere': 625, 'compare': 1831, 'absolute': 83, 'the imdb': 7958, 'the french': 7913, 'tried to': 9013, 'the american': 7733, 'in hollywood': 3895, 'and in': 435, 'with its': 9735, 'for instance': 2961, 'is shot': 4219, 'at home': 821, 'be seen': 983, 'seen in': 6872, 'new york': 5456, 'leads to': 4667, 'of plot': 5688, 'the power': 8119, 'power of': 6271, 'he must': 3519, 'before he': 1036, 'seems to': 6865, 'to follow': 8775, 'follow the': 2930, 'the start': 8202, 'at every': 817, 'see and': 6825, 'here he': 3599, 'loss of': 4856, 'looks like': 4844, 'is like': 4174, 'return to': 6594, 'kill the': 4569, 'so that': 7122, 'can take': 1557, 'role in': 6651, 'the 70s': 7717, 'all of': 248, 'towards the': 8976, 'then the': 8340, 'lost in': 4858, 'of view': 5755, 'this case': 8472, 'the usual': 8257, 'we are': 9471, 'allowed to': 278, 'rather than': 6432, 'does the': 2237, 'action sequences': 124, 'return of': 6593, 'two films': 9071, 'and in the': 436, 'part of this': 6069, 'of the two': 5731, 'the power of': 8120, 'but he is': 1423, 'and the film': 514, 'that he can': 7631, 'all of these': 251, 'point of view': 6230, 'in this case': 3974, 'br in the': 1289, 'ron': 6661, 'attacked': 851, 'dr': 2306, 'christopher': 1720, 'bound': 1188, 'minute': 5146, 'highly': 3623, 'unlikely': 9133, 'shocked': 6977, 'anymore': 613, 'talented': 7505, 'unbelievable': 9092, 'has his': 3417, 'his wife': 3686, 'the man': 8014, 'wife and': 9684, 'can do': 1539, 'there to': 8376, 'him br': 3633, 'is interesting': 4169, 'first and': 2880, 'in terms': 3937, 'terms of': 7562, 'and stupid': 504, 'is beyond': 4120, 'plot and': 6212, 'to sit': 8874, 'sit through': 7065, 'and his wife': 430, 'the man who': 8015, 'his wife and': 3687, 'him br br': 3634, 'in terms of': 3938, 'to sit through': 8875, 'attractive': 866, 'knows': 4606, 'joe': 4493, 'forces': 3012, 'terror': 7568, 'bloody': 1150, 'manages': 4986, 'upper': 9166, 'living': 4808, 'jerk': 4477, 'diana': 2138, 'continue': 1878, 'sexual': 6937, 'rough': 6666, 'rating': 6433, 'forever': 3016, 'kudos': 4610, 'robert': 6639, 'lives in': 4806, 'after being': 181, 'his way': 3685, 'manages to': 4987, 'on her': 5813, 'the living': 8000, 'eyes and': 2632, 'to explain': 8763, 'himself to': 3649, 'is almost': 4101, 'coming from': 1816, 'continue to': 1879, 'for an': 2945, 'her career': 3576, 'but it is': 1436, 'surprises': 7466, 'lead': 4662, 'worker': 9815, 'social': 7136, 'risk': 6631, 'exciting': 2587, 'guessing': 3330, 'out at': 5977, 'the lead': 7982, 'character who': 1663, 'who plays': 9651, 'plays the': 6203, 'and yet': 565, 'ends up': 2447, 'up being': 9146, 'make me': 4947, 'not like': 5538, 'like it': 4743, 'the old': 8070, 'old man': 5795, 'was being': 9341, 'the very': 8259, 'very end': 9223, 'who he': 9643, 'or what': 5942, 'if anyone': 3804, 'to hear': 8788, 'might be': 5122, 'left me': 4688, 'very much': 9231, 'that can be': 7610, 'you have the': 9936, 'at the very': 839, 'the very end': 8260, 'ways': 9468, 'silly': 7040, 'cool': 1897, 'flat': 2906, 'table': 7489, 'fairly': 2661, 'witty': 9773, 'lose': 4851, 'translation': 8993, 'film in': 2800, 'in many': 3904, 'many ways': 4999, 'was just': 9359, 'or even': 5927, 'but just': 1441, 'some great': 7146, 'action scenes': 123, 'but most': 1443, 'come up': 1793, 'the level': 7987, 'other films': 5959, 'films have': 2850, 'the opposite': 8084, 'not just': 5536, 'characters are': 1667, 'except for': 2580, 'bad guy': 921, 'film are': 2777, 'fun to': 3103, 'the dialogue': 7827, 'dialogue is': 2136, 'and doesn': 388, 'doesn seem': 2245, 'to lose': 8812, 'much in': 5340, 'is worth': 4268, 'think this': 8458, 'to offer': 8832, 'in many ways': 3905, 'of the action': 5700, 'the level of': 7988, 'of the other': 5722, 'is that this': 4238, 'all of the': 249, 'of the main': 5717, 'the main characters': 8008, 'except for the': 2581, 'this film are': 8480, 'fun to watch': 3104, 'the dialogue is': 7828, 'doesn seem to': 2246, 'think this is': 8459, 'streisand': 7364, 'curiosity': 1991, 'raised': 6416, 'industry': 4012, 'television': 7542, 'manager': 4985, 'filmed': 2839, 'vision': 9268, 'alice': 226, 'keeps': 4554, 'charming': 1685, 'bizarre': 1134, 'dramatic': 2314, 'tiny': 8685, 'lily': 4770, 'surrounded': 7470, 'tap': 7517, 'ii': 3836, 'high': 3617, 'studio': 7387, 'lucky': 4902, 'sun': 7439, 'breath': 1353, 'choose': 1711, 'quick': 6399, 'lover': 4890, 'finale': 2862, 'company': 1830, 'moves': 5234, 'terrific': 7565, 'sets': 6925, 'costumes': 1912, 'em': 2413, 'la': 4614, 'these days': 8387, 'than that': 7582, 'and got': 419, 'got it': 3269, 'the line': 7994, 'and too': 541, 'is totally': 4253, 'if not': 3810, 'is set': 4218, 'set in': 6919, 'in new': 3913, 'york city': 9913, 'in high': 3892, 'made up': 4925, 'up of': 9154, 'begins with': 1052, 'the sun': 8217, 'comes out': 1808, 'followed by': 2932, 'why did': 9671, 'come back': 1788, 'where she': 9598, 'out by': 5981, 'and funny': 411, 'sets and': 6926, 'really don': 6475, 'don make': 2268, 'the special': 8195, 'and for the': 406, 'in new york': 3914, 'new york city': 5457, 'remake': 6539, 'hills': 3630, '1970s': 22, 'degree': 2075, 'carried': 1593, 'landscape': 4628, 'photography': 6153, 'visit': 9270, 'cruel': 1982, 'desert': 2099, 'rushed': 6684, 'ill': 3838, 'cash': 1605, 'franchise': 3047, 'craven': 1950, 'screenplay': 6801, 'speed': 7221, 'falls': 2672, 'cliché': 1747, 'military': 5132, 'soldiers': 7141, 'thoroughly': 8587, 'bore': 1171, 'successfully': 7415, 'cameron': 1533, 'directing': 2179, 'martin': 5013, 'cardboard': 1580, 'beings': 1060, 'needless': 5431, 'broad': 1370, 'dumb': 2349, 'illogical': 3839, 'scenario': 6751, 'sam': 6702, 'proved': 6357, 'genuine': 3146, 'originality': 5951, 'individual': 4010, 'remotely': 6556, 'interested': 4053, 'excuse': 2588, 'spend': 7223, 'bin': 1122, 'remake of': 6540, 'of character': 5630, 'character development': 1655, 'was better': 9342, 'original and': 5948, 'forward to': 3032, 'dark and': 2018, 'in on': 3916, 'made it': 4919, 'it into': 4345, 'was it': 9358, 'absolutely nothing': 86, 'nothing new': 5573, 'the desert': 7824, 'the military': 8026, 'are always': 657, 'and never': 466, 'but never': 1444, 'to care': 8730, 'was also': 9332, 'the cast': 7780, 'to turn': 8911, 'needless to': 5432, 'every character': 2547, 'half of': 3362, 'that even': 7619, 'still be': 7317, 'out with': 6005, 'but we': 1482, 'of any': 5624, 'interested in': 4054, 'excuse for': 2589, 'deserves to': 2103, 'to spend': 8879, 'the rest': 8142, 'rest of': 6584, 'of its': 5660, 'life in': 4727, 'better than the': 1101, 'in on the': 3917, 'could have been': 1919, 'was the only': 9397, 'needless to say': 5433, 'half of the': 3363, 'the rest of': 8143, 'starring': 7269, 'justice': 4543, 'this should': 8566, 'should not': 7000, 'it does': 4318, 'any of': 606, 'should have': 6998, 'all to': 270, 'to our': 8835, 'not have been': 5533, 'it does not': 4319, 'any of the': 607, 'should have been': 6999, 'natural': 5408, 'born': 1176, 'jokes': 4500, 'that had': 7627, 'had seen': 3354, 'guy in': 3340, 'was funny': 9350, 'funny as': 3110, 'it but': 4303, 'the jokes': 7966, 'anything about': 618, 'wasn even': 9416, 'time for': 8655, 'things about': 8441, 'were the': 9538, 'the beautiful': 7752, 'it definitely': 4314, 'definitely one': 2073, 'films ve': 2858, 'was so bad': 9385, 'to watch it': 8918, 'to the end': 8889, 'of the worst': 5735, 'glimpse': 3201, '30': 40, 'returned': 6595, 'damn': 2006, 'proud': 6355, 'frustrated': 3094, 'wake': 9287, 'rubbish': 6671, 'to all': 8698, 'don watch': 2279, 'br don': 1277, 'don even': 2258, 'is bad': 4112, 'from this': 3088, 'after all': 180, 'it if': 4340, 'br am': 1204, 'and with': 561, 'with no': 9742, 'one and': 5851, 'watch the movie': 9430, 'br br don': 1227, 'of it is': 5659, 'br br am': 1216, 'titles': 8692, 'various': 9200, 'machine': 4911, 'seven': 6929, 'super': 7442, 'secret': 6820, 'government': 3276, 'project': 6343, 'suppose': 7450, 'drives': 2330, 'sitting': 7069, 'you know': 9942, 'which has': 9608, 'to read': 8848, 'but instead': 1432, 'instead it': 4037, 'or something': 5937, 'like that': 4750, 'filled with': 2772, 'to act': 8694, 'to be able': 8707, 'stuck': 7383, 'happens': 3390, 'search': 6810, 'study': 7389, 'potential': 6267, 'crowd': 1980, 'symbolism': 7484, 'twice': 9063, 'you like': 9943, 'stuck in': 7384, 'what happens': 9555, 'are few': 662, 'no doubt': 5475, 'then this': 8344, 'is indeed': 4168, 'br you': 1340, 'can watch': 1563, 'do you': 2226, 'll never': 4814, 'is more': 4178, 'or at': 5925, 'to think': 8900, 'if you like': 3829, 'br there are': 1320, 'there are few': 8351, 'it if you': 4341, 'if you want': 3832, 'br br you': 1271, 'or at least': 5926, 'history': 3690, 'uses': 9183, 'mini': 5142, 'opened': 5909, 'destroyed': 2114, 'forest': 3015, 'love story': 4879, 'story with': 7354, 'acting and': 113, 'movie should': 5290, 'they just': 8413, 'mini series': 5143, 'the battle': 7749, 'the costumes': 7810, 'good in': 3247, 'was completely': 9344, 'to fight': 8766, 'the city': 7802, 'and by': 377, 'the time to': 8235, 'alison': 231, 'parker': 6060, 'successful': 7414, 'lawyer': 4658, 'michael': 5113, 'apartment': 628, 'suicide': 7432, 'teenager': 7538, 'died': 2161, 'christ': 1717, 'catholic': 1621, 'reasonable': 6488, 'rental': 6560, 'sees': 6880, 'window': 9707, 'priest': 6306, 'neighbor': 5438, 'charles': 1682, 'cat': 1616, 'birthday': 1126, 'party': 6078, 'investigation': 4079, 'knew': 4587, 'realizes': 6471, 'six': 7072, '2002': 33, 'actresses': 138, 'fans': 2688, 'vote': 9280, 'nine': 5473, 'brazil': 1348, '2007': 37, 'spoilers br': 7240, 'the past': 8095, 'her father': 3579, 'her mother': 3584, 'with two': 9760, 'women in': 9783, 'then she': 8338, 'alone in': 286, 'man in': 4974, 'the window': 8283, 'place and': 6179, 'then he': 8336, 'that all': 7594, 'living in': 4809, 'br although': 1203, 'horror movies': 3733, 'movies ever': 5318, 'film at': 2779, 'being the': 1059, 'time in': 8657, 'the 70': 7716, 'dvd and': 2356, 'it again': 4283, 'even after': 2517, 'many years': 5000, 'the present': 8122, 'cast is': 1610, 'the beginning': 7754, 'beginning of': 1047, 'fans of': 2689, 'of horror': 5653, 'spoilers br br': 7241, 'in the past': 3957, 'with the help': 9751, 'man in the': 4975, 'that she is': 7675, 'br br although': 1215, 'of the best': 5702, 'have seen this': 3475, 'seen this film': 6877, 'this film at': 8482, 'the cast is': 7781, 'you can see': 9922, 'in the beginning': 3941, 'the beginning of': 7755, 'blair': 1139, 'witch': 9719, 'relationships': 6526, 'mission': 5160, 'plan': 6186, 'shoot': 6980, 'guns': 3336, 'affected': 173, 'chilling': 1706, 'quote': 6407, 'gonna': 3233, 'plastic': 6192, 'bag': 931, 'last night': 4636, 'one at': 5853, 'at that': 833, 'that br': 7606, 'it about': 4281, 'high school': 3618, 'that these': 7688, 'these are': 8385, 'just like': 4532, 'we know': 9480, 'who have': 9642, 'the army': 7735, 'to shoot': 8872, 'up there': 9158, 'you see': 9958, 'see how': 6830, 'all and': 234, 'no reason': 5487, 'like said': 4748, 'then they': 8343, 'throughout the': 8633, 'the school': 8163, 'the things': 8227, 'for yourself': 3008, 'across the': 109, 'the country': 7811, 'don know': 2263, 'know what': 4598, 'only way': 5905, 'coming out': 1817, 'in black': 3874, 'you really': 9957, 'that br br': 7607, 'at all and': 810, 'there is no': 8363, 'to be seen': 8715, 'have to see': 3484, 'don know what': 2265, 'the only way': 8079, 'contain': 1873, 'buy': 1491, 'sounded': 7198, 'kevin': 4559, 'morgan': 5210, 'freeman': 3057, 'wannabe': 9300, 'response': 6580, 'edge': 2380, 'trial': 9007, 'involving': 4086, 'foul': 3034, 'investigate': 4078, 'wallace': 9296, 'deep': 2067, 'blue': 1153, 'sea': 6808, 'sunday': 7440, 'drags': 2310, 'feet': 2740, 'satisfying': 6715, 'putting': 6390, 'this review': 8561, 'how bad': 3750, 'well it': 9514, 'it pretty': 4390, 'pretty bad': 6298, 'that may': 7656, 'lead to': 4663, 'the edge': 7841, 'the opening': 8080, 'opening scene': 5912, 'but at': 1410, 'at night': 828, 'to much': 8827, 'the guys': 7934, 'doing the': 2253, 'goes to': 3221, 'the team': 8221, 'to bring': 8725, 'can tell': 1558, 'is complete': 4131, 'of me': 5669, 'pretty much': 6300, 'much the': 5346, 'was much': 9366, 'much better': 5337, 'in movies': 3910, 'off with': 5778, 'ending is': 2442, 'far from': 2698, 'time with': 8672, 'the opening scene': 8082, 'don want to': 2276, 'to try to': 8910, 'you can tell': 9923, 'from the beginning': 3083, 'rest of the': 6585, 'the ending is': 7852, 'folks': 2928, 'bang': 938, 'roll': 6654, 'bodies': 1160, 'twisted': 9066, 'species': 7217, 'winner': 9709, 'loser': 4852, 'cares': 1588, 'disgusting': 2203, 'progress': 6342, 'loving': 4893, 'praise': 6276, 'man and': 4973, 'the credits': 7816, 'plot but': 6213, 'who cares': 9634, 'how many': 3756, 'interesting and': 4056, 'make up': 4954, 'the cgi': 7785, 'is bit': 4121, 'the overall': 8091, 'was truly': 9403, 'fun and': 3101, 'you won': 9975, 'won be': 9785, 'be disappointed': 967, 'place in the': 6181, 'bland': 1141, 'wonders': 9794, 'dozens': 2305, 'amateur': 308, 'season': 6812, 'fresh': 3060, 'humorous': 3779, 'nonetheless': 5503, 'somebody': 7165, 'win': 9705, 'fact it': 2644, 'their best': 8312, 'best friend': 1085, 'br with': 1337, 'the local': 8001, 'plot line': 6216, 'in fact it': 3881, 'br br with': 1268, 'that would be': 7711, 'fox': 3044, '24': 38, 'agree': 210, 'expensive': 2604, 'writers': 9879, 'sitcom': 7066, 'fired': 2879, 'cost': 1909, 'chief': 1701, 'suggests': 7431, 'suit': 7433, 'listening': 4788, 'boss': 1177, 'suddenly': 7424, 'adds': 155, 'already': 292, 'instantly': 4035, 'screams': 6796, 'crimes': 1970, 'wear': 9494, 'basic': 951, 'arrested': 714, 'show to': 7011, 'for something': 2980, 'them but': 8324, 'be too': 991, 'likely to': 4767, 'br well': 1332, 'br we': 1331, 'we could': 9473, 'could do': 1915, 'people like': 6101, 'out there': 6000, 'we do': 9474, 'stand out': 7255, 'if we': 3822, 'do that': 2219, 'give them': 3186, 'it from': 4327, 'could make': 1921, 'make them': 4952, 'to add': 8696, 'br by': 1274, 'beautiful and': 1001, 'well that': 9517, 'the average': 7739, 'br then': 1318, 'call it': 1518, 'which had': 9607, 'and go': 415, 'go and': 3205, 'br br well': 1263, 'br br we': 1262, 'but there are': 1467, 'br br by': 1224, 'br br then': 1254, 'documentary': 2231, 'uncle': 9093, 'interviews': 4064, 'commentary': 1821, 'like all': 4738, 'this documentary': 8476, 'to know': 8802, 'is my': 4186, 'of him': 5648, 'that in': 7639, 'very hard': 9228, 'into this': 4072, 'can find': 1541, 'better to': 1104, 'does it': 2235, 'it well': 4437, 'which he': 9609, 'adds to': 156, 'and everything': 398, 'everything in': 2560, 'in between': 3873, 'that really': 7670, 'shows the': 7023, 'the eyes': 7866, 'eyes of': 2633, 'through it': 8629, 'comments on': 1823, 'those who': 8594, 'it or': 4386, 'and would': 563, 'would love': 9859, 'love to': 4883, 'adds to the': 157, 'this is great': 8506, 'would love to': 9860, 'sold': 7139, 'halloween': 3367, 'versus': 9220, 'accent': 91, 'have made': 3460, 'my money': 5384, 'itself is': 4457, 'done better': 2283, 'on my': 5823, 'than what': 7586, 'can you': 1564, 'br not': 1297, 'come on': 1790, 'br br not': 1243, 'essentially': 2504, 'promising': 6346, 'drunken': 2338, 'warned': 9320, 'synopsis': 7487, 'utterly': 9189, 'whatsoever': 9578, 'reviews': 6608, 'greater': 3302, 'russian': 6686, 'youth': 9995, 'front': 3091, 'advance': 166, 'screening': 6800, 'following': 2933, 'suggest': 7430, 'immediately': 3849, 'confusion': 1858, 'strangely': 7360, 'lights': 4736, 'meaning': 5064, 'painful': 6045, 'fantastic': 2691, 'korean': 4608, 'chinese': 1708, 'number of': 5594, 'first half': 2882, 'half hour': 3361, 'film have': 2796, 'have nothing': 3468, 'nothing to': 5574, 'they never': 8417, 'only the': 5901, 'be an': 962, 'to my': 8828, 'in front': 3887, 'front of': 3092, 'film seems': 2820, 'as was': 783, 'the following': 7908, 'much for': 5339, 'that you': 7713, 'it it': 4359, 'talking about': 7512, 'get out': 3159, 'do is': 2214, 'any way': 611, 'lot to': 4866, 'is probably': 4211, 'this really': 8560, 'reason why': 6487, 'be so': 984, 'painful to': 6046, 'the first half': 7901, 'fact that the': 2647, 'nothing to do': 5575, 'do with the': 2225, 'to be an': 8708, 'br the first': 1313, 'have been the': 3449, 'in front of': 3888, 'front of the': 3093, 'seems to be': 6866, 'to say the': 8860, 'see this film': 6841, 'this film and': 8479, 'to make it': 8815, 'it it is': 4360, 'it is very': 4357, 'by the time': 1508, 'to get out': 8777, 'in any way': 3872, 'all of this': 252, 'to the point': 8894, 'equally': 2489, 'believable': 1062, 'saves': 6722, 'villain': 9258, 'costs': 1910, 'piece': 6167, 'forgettable': 3019, 'member': 5083, 'reputation': 6571, 'below': 1077, 'shame': 6944, 'central': 1631, 'pick': 6157, 'and being': 372, 'script is': 6805, 'is funny': 4150, 'back of': 904, 'bad the': 928, 'like an': 4739, 'all costs': 240, 'or is': 5930, 'member of': 5084, 'film or': 2818, 'who can': 9633, 'know the': 4596, 'if they': 3819, 'stay away': 7294, 'far away': 2695, 'away and': 886, 'the script is': 8168, 'at all costs': 812, 'the people who': 8097, 'difficult': 2167, 'rate': 6428, 'cut': 1997, 'segments': 6882, 'doctor': 2229, 'office': 5784, 'viewing': 9255, 'segment': 6881, 'ain': 214, 'difficult to': 2168, 'rating of': 6434, 'one for': 5862, 'the all': 7732, 'the doctor': 7834, 'the lady': 7976, 'was an': 9333, 'scene in the': 6757, 'and the story': 520, 'prior': 6314, 'mst3k': 5333, 'proves': 6358, 'exception': 2582, 'mitchell': 5163, 'dislike': 2204, 'suspects': 7475, 'attack': 850, 'comic': 1810, 'relief': 6533, 'bond': 1165, 'repeat': 6564, 'pieces': 6170, 'repeatedly': 6566, 'presumably': 6295, 'jail': 4461, 'yeah': 9890, 'gorgeous': 3266, 'decades': 2058, 've never': 9208, 'prior to': 6315, 'not that': 5549, 'were all': 9532, 'the star': 8200, 'killed by': 4571, 'since he': 7051, 'comic relief': 1812, 'movies the': 5325, 'the problem': 8124, 'problem is': 6322, 'it hard': 4335, 'one br': 5854, 'br as': 1208, 'as for': 736, 'set pieces': 6922, 'you were': 9971, 'using the': 9185, 'scene of': 6760, 'br on': 1302, 'it up': 4423, 'this flick': 8495, 'to get the': 8778, 'the problem is': 8125, 'it hard to': 4336, 'movies like this': 5322, 'like this one': 4756, 'one br br': 5855, 'br br as': 1220, 'br as for': 1209, 'as for the': 737, 'br br on': 1247, 'british': 1369, 'screaming': 6795, 'gary': 3130, 'stretch': 7367, 'oh': 5787, 'lovely': 4889, 'extras': 2626, 'met': 5108, 'jon': 4502, 'members of': 5086, 'appear in': 637, 'good acting': 3234, 'good idea': 3246, 'to earth': 8756, 'and good': 417, 'you br': 9917, 'br can': 1275, 'can wait': 1562, 'wait to': 9284, 'enough of': 2467, 'you br br': 9918, 'br br can': 1225, 'commercials': 1825, 'broke': 1372, 'pacing': 6038, 'dean': 2050, 'jerry': 4478, 'lewis': 4715, 'indian': 4007, 'india': 4006, 'but even': 1419, 'was like': 9360, 'like watching': 4759, 'played by': 6196, 'doesn take': 2247, 'but can': 1415, 'it was like': 4429, 'regret': 6518, 'intentions': 4050, 'bleak': 1142, 'movie can': 5251, 'can believe': 1538, 'believe that': 1067, 'and boring': 375, 've seen this': 9213, 'believe that the': 1068, 'insult': 4039, 'free': 3055, 'depiction': 2089, 'joke': 4499, '80s': 51, 'insult to': 4040, 'movie are': 5242, 'close to': 1754, 'movie of': 5286, 'since the': 7053, 'more interesting': 5201, 'this for': 8496, 'depiction of': 2090, 'not be': 5516, 'of which': 5760, 'they would': 8428, 'movie would': 5311, 'shot on': 6993, 'save your': 6720, 'this movie are': 8525, 'close to the': 1755, 'to this movie': 8904, 'this movie would': 8549, 'it looks like': 4366, 'looks like it': 4845, 'like it was': 4744, 'manage': 4981, 'hole': 3702, 'werewolf': 9542, 'clips': 1752, 'porn': 6247, 'classic': 1740, 'manage to': 4982, 'the list': 7996, 'on and': 5802, 'know if': 4593, 'something about': 7171, 'the light': 7991, 'this could': 8473, 'not because': 5517, 'an original': 349, 'original movie': 5950, 'don see': 2272, 'worth the': 9841, 'on and on': 5803, 'don know if': 2264, 'because of the': 1011, 'and all the': 357, 'southern': 7205, 'depicted': 2088, 'wind': 9706, 'gotten': 3275, 'college': 1774, 'thrown': 8638, 'wealthy': 9491, 'oil': 5789, 'law': 4656, 'sister': 7062, 'mary': 5015, 'lee': 4686, 'dorothy': 2293, 'hudson': 3769, 'faithful': 2664, 'bride': 1356, 'reveals': 6602, 'pregnant': 6282, 'accidentally': 97, 'unfortunate': 9111, 'accident': 96, 'deserved': 2101, 'surprisingly': 7468, 'nominated': 5495, 'upset': 9168, 'victory': 9244, 'anthony': 598, 'paul': 6090, 'douglas': 2296, 'master': 5020, '1950s': 20, 'the wind': 8282, 'has always': 3408, 'the town': 8240, 'br while': 1335, 'there were': 8380, 'can have': 1545, 'is when': 4263, 'him that': 3642, 'the child': 7796, 'but is': 1433, 'nominated for': 5496, 'actor and': 127, 'in an': 3868, 'life br': 4724, 'films of': 2853, 'br br while': 1266, 'life br br': 4725, 'films of the': 2854, 'naturally': 5409, 'notch': 5560, 'fell': 2741, 'shoots': 6982, 'ben': 1078, 'allows': 280, 'amusing': 322, 'ritter': 6632, 'camp': 1534, 'is obviously': 4196, 'the women': 8285, 'above the': 81, 'the others': 8090, 'her in': 3582, 'right in': 6622, 'the love': 8004, 'the course': 7813, 'course of': 1936, 'the course of': 7814, 'the film are': 7879, 'laurel': 4655, 'cole': 1771, 'misses': 5158, 'grave': 3288, 'eerie': 2385, 'apart': 626, 'thin': 8430, 'tons': 8941, 'board': 1156, 'badly': 930, 'pointless': 6236, 'forgotten': 3022, 'skip': 7077, 'the house': 7952, 'she also': 6951, 'tons of': 8942, 'motion picture': 5225, 'scenes and': 6769, 'it there': 4414, 'skip this': 7078, 'ever seen in': 2544, 'pop': 6244, 'mid': 5115, 'today': 8929, 'references': 6511, 'jimmy': 4485, 'stewart': 7312, 'explore': 2618, 'careers': 1586, 'witches': 9720, 'curious': 1992, 'grand': 3280, 'began': 1041, 'continued': 1880, 'magic': 4932, 'harry': 3404, 'noted': 5562, 'christmas': 1719, 'sacrifice': 6689, '90': 52, 'holiday': 3704, 'substance': 7407, 'adam': 144, 'ahead': 212, 'book and': 1168, 'the mid': 8023, 'ten years': 7553, 'went on': 9529, 'is also': 4102, 'movie have': 5263, 'several times': 6931, 'or just': 5931, 'and like': 448, 'that were': 7705, 'its time': 4455, 'the female': 7875, 'ahead of': 213, 'to this film': 8903, 'this film it': 8489, 'along with the': 291, 'if it is': 3808, 'sinatra': 7049, 'gene': 3138, 'kelly': 4555, 'rain': 6414, 'awesome': 892, 'it comes': 4309, 'comes to': 1809, 'had never': 3351, 'too but': 8947, 'was good': 9353, 'love it': 4877, 'see them': 6839, 'together in': 8933, 'when it comes': 9584, 'it comes to': 4310, 'comedies': 1797, 'hot': 3739, 'glory': 3202, 'luck': 4900, 'chuck': 1721, 'turned': 9046, 'andy': 573, 'carry': 1595, 'longer': 4828, 'fisher': 2896, 'knowing': 4601, 'normally': 5507, 'warn': 9319, 'first off': 2886, 'off to': 5777, 'movies br': 5315, 'got to': 3271, 'by that': 1505, 'point that': 6232, 'not make': 5539, 'once the': 5849, 'be some': 985, 'than to': 7585, 'movie they': 5298, 'they must': 8416, 'thought it': 8603, 'much as': 5336, 'is only': 4204, 'movie ve': 5303, 'movies br br': 5316, 'silent': 7039, 'developing': 2123, 'seriously': 6913, 'event': 2537, 'tricks': 9011, 'men': 5092, 'skills': 7075, 'keaton': 4549, 'lloyd': 4815, 'persona': 6138, 'chaplin': 1652, 'innocence': 4022, 'approach': 650, 'react': 6449, 'touching': 8970, 'results': 6590, 'throwing': 8637, 'path': 6086, 'overcome': 6027, 'rocks': 6645, 'leg': 4692, 'race': 6408, 'rival': 6633, 'hasn': 3433, 'made the': 4922, 'top of': 8960, 'list of': 4784, 'of great': 5645, 'his first': 3666, 'he also': 3492, 'the comedy': 7805, 'he tries': 3530, 'at an': 814, 'him in': 3638, 'this story': 8569, 'story about': 7334, 'to win': 8923, 'here that': 3603, 'been done': 1028, 'far better': 2696, 'film and the': 2776, 'at the top': 838, 'the top of': 8239, 'he tries to': 3531, 'revealed': 6600, 'tongue': 8940, 'helps': 3565, 'piece of': 6168, 'br think': 1322, 'this has': 8500, 'well done': 9512, 'tv show': 9060, 'film but': 2783, 'tv series': 9059, 'will enjoy': 9688, 'enjoy this': 2457, 'going to be': 3227, 'br br think': 1256, 'fan of the': 2686, 'of the original': 5721, 'honestly': 3712, 'flawed': 2908, 'wrote': 9887, 'loosely': 4847, 'terribly': 7564, 'miscast': 5154, 'kept': 4558, 'everywhere': 2563, 'ashamed': 790, 'lyrics': 4910, 'issue': 4278, 'changed': 1646, 'doc': 2228, 'remote': 6555, 'open': 5908, 'safe': 6693, 'missing': 5159, 'virtually': 9266, 'roy': 6670, 'combined': 1785, 'explains': 2614, 'double': 2294, 'flash': 2903, 'ruined': 6674, 'image': 3840, 'books': 1169, 'comics': 1814, 'reminded': 6547, 'charlie': 1683, 'fu': 3096, 'tarzan': 7520, 'buck': 1384, 'rogers': 6647, 'types': 9079, 'regular': 6519, 'else': 2407, 'passion': 6082, 'pamela': 6052, 'nose': 5510, 'george': 3148, 'smart': 7097, 'this out': 8554, 'it must': 4375, '20 years': 30, 'bad br': 916, 'the casting': 7782, 'them are': 8320, 'take it': 7492, 'on top': 5838, 'of bad': 5626, 'entire film': 2479, 'that should': 7676, 'the comic': 7806, 'comic book': 1811, 'was almost': 9331, 'every single': 2549, 'just about': 4517, 'left the': 4689, 'nothing is': 5569, 'follows the': 2936, 'elements of': 2404, 'because they': 1016, 'the kind': 7971, 'lack of': 4617, 'in no': 3915, 'the screen': 8165, 'best thing': 1091, 'would make': 9861, 'with that': 9748, 'we can': 9472, 'the years': 8303, 'image of': 3841, 'be said': 982, 'really really': 6482, 'characters have': 1671, 'been made': 1030, 'so you': 7133, 'like they': 4752, 'the directing': 7830, 'is terrific': 4234, 'read the': 6453, 'quite as': 6404, 'or maybe': 5933, 'was supposed': 9388, 'because that': 1013, 'bad br br': 917, 'characters in the': 1673, 'in the story': 3963, 'of them are': 5739, 'on top of': 5839, 'all the way': 262, 'the entire film': 7856, 'if you re': 3830, 'the kind of': 7972, 'on the screen': 5831, 'the best thing': 7760, 'over the years': 6022, 'have been made': 3447, 'it seems to': 4400, 'best of the': 1088, 'from the original': 3085, 'was supposed to': 9389, 'producer': 6331, 'indie': 4009, 'critic': 1975, 'producers': 6332, 'movies and': 5313, 'of such': 5697, 'loved this': 4888, 'movie it': 5278, 'and entertaining': 392, 'the producers': 8128, 'good one': 3252, 'll be': 4811, 'gave it': 3133, 'it 10': 4280, 'have to say': 3483, 'this movie it': 8538, 'movie it is': 5279, 'reed': 6509, 'presence': 6287, 'proceedings': 6327, 'adequate': 158, 'sole': 7142, 'california': 1516, 'mexico': 5111, 'population': 6246, 'mexican': 5110, 'corny': 1905, 'ludicrous': 4904, 'represents': 6570, 'jones': 4503, 'notice': 5576, 'it shame': 4401, 'shame that': 6945, 'the least': 7985, 'seen br': 6870, 'different from': 2166, 'cast as': 1609, 'here as': 3595, 'he has': 3507, 'br another': 1206, 'do anything': 2212, 'me wrong': 5061, 'is at': 4110, 'but overall': 1453, 'probably the': 6320, 'than most': 7580, 'seen br br': 6871, 'he is not': 3511, 'br br another': 1218, 'get me wrong': 3158, 'br the plot': 1316, 'fans of the': 2690, 'blow': 1151, 'demons': 2083, 'corpse': 1906, 'end the': 2436, 'they even': 8406, 'see movie': 6835, 'movie like': 5282, 'to make movie': 8816, 'teen': 7536, 'childish': 1704, 'properly': 6350, 'throws': 8640, 'angry': 579, 'sign': 7035, 'seemingly': 6861, 'bobby': 1159, 'rip': 6627, 'horrid': 3727, 'none': 5499, 'public': 6368, 'chances': 1643, 'girl who': 3179, 'was with': 9411, 'the wrong': 8301, 'wouldn be': 9870, 'the baby': 7740, 'her daughter': 3578, 'the age': 7730, 'age of': 204, 'rip off': 6628, 'off of': 5775, 'none of': 5500, 'it only': 4385, 'the public': 8130, 'none of the': 5501, 'the characters are': 7792, 'talk': 7508, 'radio': 6412, 'essence': 2502, 'toward': 8973, 'beautifully': 1002, 'crafted': 1946, 'cruise': 1983, 'road': 6635, 'spooky': 7244, 'because we': 1018, 'what happened': 9553, 'face it': 2638, 'the genre': 7921, 'the basic': 7748, 'set up': 6924, 'thing in': 8435, 'way they': 9462, 'story the': 7350, 'enjoy the': 2456, 'one might': 5869, 'reminds me': 6551, 'me of': 5052, 'at times': 844, 'out in the': 5986, 'the end the': 7850, 'the way they': 8274, 'reminds me of': 6552, 'jennifer': 4475, 'heaven': 3552, 'led': 4684, 'attention': 862, 'as soon': 768, 'soon as': 7188, 'of us': 5753, 'kids and': 4567, 'loved it': 4886, 'and again': 355, 'you who': 9972, 'can not': 1550, 'as soon as': 769, 'movie is not': 5273, 'is not only': 4192, 'it was one': 4432, 'again and again': 195, 'standing': 7259, 'streets': 7363, 'principal': 6312, 'crisis': 1974, 'previous': 6302, 'jumping': 4512, 'conspiracy': 1869, 'crazy': 1951, 'enter': 2471, 'enters': 2472, 'slowly': 7093, 'becoming': 1023, 'strength': 7365, 'extent': 2623, 'matters': 5029, 'knife': 4588, 'decade': 2057, 'sometimes': 7178, 'executed': 2590, 'spoken': 7242, 'punch': 6373, 'in time': 3979, 'in paris': 3925, 'and as': 365, 'as in': 748, 'films the': 2856, 'and especially': 393, 'especially the': 2500, 'where the': 9599, 'time of': 8660, 'role and': 6649, 'and does': 387, 'as some': 767, 'the hero': 7943, 'the previous': 8123, 'has just': 3420, 'the hospital': 7950, 'and beautiful': 370, 'her first': 3580, 'make him': 4945, 'or to': 5940, 'the life': 7989, 'role of': 6652, 'the dead': 7821, 'to run': 8854, 'and ends': 390, 'story but': 7339, 'state of': 7287, 'the water': 8269, 'are many': 675, 'be and': 963, 'life is': 4728, 'feeling of': 2735, 'not too': 5554, 'the english': 7854, 'waiting for': 9286, 'scene is': 6759, 'director and': 2185, 'his career': 3658, 'of the first': 5711, 'it is just': 4350, 'not to be': 5552, 'must have been': 5368, 'and the fact': 513, 'of the dead': 5707, 'but in the': 1430, 'there are many': 8352, 'film was made': 2831, 'deeper': 2068, 'ironic': 4090, 'intended': 4045, '1970': 21, 'era': 2490, 'ended': 2439, 'reach': 6446, 'gratuitous': 3287, 'noble': 5491, 'glad': 3197, 'golden': 3231, 'dreadful': 2318, 'times it': 8681, 'point the': 6233, 'sure it': 7457, 'was filmed': 9349, 'filmed in': 2840, 'released in': 6531, 'an attempt': 332, 'for your': 3007, 'appreciate the': 648, 'much more': 5343, 'as much as': 758, 'an attempt to': 333, 'it made me': 4368, '14': 11, 'ran': 6418, 'film which': 2834, 'were so': 9536, 'up for': 9150, 'first saw': 2891, 'the story and': 8205, 'throw': 8636, 'william': 9700, 'strip': 7373, 'hands': 3376, 'generous': 3142, 'navy': 5412, 'equal': 2488, 'heck': 3555, 'in few': 3883, 'not bad': 5515, 'where he': 9596, 'with only': 9744, 'over his': 6018, 'that if': 7637, 'do so': 2217, 'movie about': 5235, 'for his': 2960, 'he has to': 3508, 'that if you': 7638, 'to do so': 8751, 'of the people': 5723, 'news': 5458, 'report': 6568, 'training': 8992, 'base': 945, 'faced': 2640, 'develop': 2121, 'whilst': 9628, 'aspect': 799, 'soldier': 7140, 'train': 8991, 'examples': 2575, 'current': 1993, 'conflict': 1855, 'caused': 1625, 'split': 7236, 'receive': 6492, 'combat': 1781, 'realise': 6464, 'target': 7519, 'humanity': 3775, 'individuals': 4011, 'freedom': 3056, 'destroy': 2113, 'closer': 1758, 'political': 6239, 'goal': 3216, 'psychological': 6366, 'flaw': 2907, 'argument': 705, 'liberal': 4717, 'stock': 7322, 'footage': 2940, 'an episode': 339, 'episode of': 2486, 'world war': 9826, 'the us': 8254, 'the war': 8268, 'that many': 7655, 'and found': 408, 'human being': 3774, 'matter of': 5028, 'who don': 9638, 'br first': 1280, 'as such': 770, 'very bad': 9221, 'on that': 5829, 'as part': 761, 'about any': 61, 'the problems': 8126, 'leave the': 4678, 'actually the': 142, 'into an': 4065, 'how the': 3759, 'but once': 1450, 'once in': 5848, 'that as': 7601, 'way the': 9461, 'no real': 5486, 'given to': 3193, 'forced to': 3011, 'with what': 9762, 'seen and': 6868, 'make sure': 4950, 'sure the': 7459, 'pick up': 6158, 'up this': 9159, 'if there': 3817, 'you would': 9977, 'would get': 9851, 'impression that': 3859, 'that every': 7620, 'is never': 4187, 'other than': 5963, 'and music': 463, 'there is an': 8362, 'br br first': 1230, 'as part of': 762, 'it may be': 4371, 'br but the': 1273, 'the way the': 8273, 'if there is': 3818, 'film it is': 2807, 'it is that': 4355, 'the impression that': 7960, 'side of the': 7030, 'other than that': 5964, 'unfunny': 9115, 'caring': 1589, 'wolf': 9775, 'beaten': 998, 'higher': 3619, 'fully': 3099, 'five minutes': 2901, 'in which': 3987, 'the writing': 8300, 'even when': 2533, 'up by': 9149, 'concerned': 1849, 'jobs': 4492, 'sheriff': 6971, 'riding': 6620, 'rings': 6626, 'tree': 9003, 'he and': 3493, 'his father': 3663, 'just one': 4534, 'course the': 1937, 'for them': 2992, 'us the': 9172, 'could go': 1917, 'was meant': 9364, 'that was the': 7701, 'the film in': 7886, 'film in the': 2801, 'of course the': 5635, 'picks': 6162, 'steven': 7311, 'che': 1689, 'passing': 6081, 'mentioned': 5102, 'revolution': 6609, 'planned': 6189, 'notorious': 5578, 'nearby': 5417, 'larger': 4633, 'sympathetic': 7485, 'leading': 4665, 'horse': 3735, 'marks': 5006, 'narrative': 5402, 'occasion': 5605, 'matt': 5025, 'lord': 4848, 'off as': 5770, 'in part': 3926, 'only in': 5897, 'the side': 8183, 'and of': 471, 'first part': 2888, 'which makes': 9614, 'no matter': 5480, 'in one': 3918, 'this as': 8467, 'starts to': 7284, 'something of': 7175, 'and felt': 401, 'yet it': 9910, 'it starts': 4408, 'to work': 8924, 'the sense': 8173, 'any film': 602, 'running time': 6680, 'but these': 1469, 'with great': 9730, 'care for': 1583, 'the men': 8021, 'men in': 5094, 'the group': 7930, 'and how': 432, 'scene and': 6753, 'as always': 724, 'so well': 7129, 'better and': 1096, 'he comes': 3496, 'overall the': 6025, 'good for': 3245, 'and of course': 472, 'fantasy': 2692, 'hundred': 3781, 'settings': 6928, 'spectacular': 7219, 'keeping': 4553, 'go into': 3208, 'types of': 9080, 'get in': 3154, 'from that': 3081, 'is certainly': 4128, 'will not': 9695, 'find this': 2869, 'in with': 3990, 'we should': 9487, 'films like': 2852, 'about what': 79, 'all the other': 260, 'watch this film': 9432, 'created': 1953, 'brando': 1346, 'considering': 1865, 'wanting': 9309, 'marvelous': 5014, 'woman and': 9777, 'wanting to': 9310, 'his performance': 3681, 'his acting': 3655, 'an oscar': 350, 'oscar for': 5954, 'performance of': 6120, 'of another': 5623, 'falls in': 2674, 'though the': 8599, 'well as the': 9508, 'and the movie': 515, 'falls in love': 2675, 'but the movie': 1463, 'kurt': 4613, 'russell': 6685, 'todd': 8930, 'stage': 7251, 'bruce': 1382, 'jason': 4469, 'entirely': 2481, 'sequels': 6902, 'com': 1780, 'nothing but': 5566, 'war and': 9315, 'the stage': 8198, 'and another': 363, 'all too': 271, 'br 10': 1198, '10 10': 3, '10 br': 4, 'br br 10': 1211, '10 br br': 5, 'diamond': 2137, 'intensity': 4048, 'worthy': 9845, 'guide': 3332, 'favor': 2716, 'screen and': 6798, 'their characters': 8313, 'film should': 2821, 'the studio': 8214, 'look for': 4833, 'matter how': 5027, 'it you': 4449, 'do yourself': 2227, 'it ll': 4363, 'read the book': 6454, 'the book and': 7768, 'it could have': 4313, 'and if you': 434, 'no matter how': 5481, 'besides': 1080, 'david': 2027, 'comedic': 1796, 'duo': 2350, 'national': 5406, '1980s': 24, 'spirited': 7231, 'debut': 2056, 'darker': 2019, 'lovable': 4872, 'alex': 224, 'winter': 9712, 'unforgettable': 9110, 'day and': 2033, 've always': 9202, 'about two': 78, 'shot in': 6991, 'box office': 1191, 'and an': 362, 'the sequel': 8174, 'director of': 2186, 'unlike the': 9132, 'been better': 1027, 'its own': 4454, 'while it': 9622, 'it doesn': 4320, 'like most': 4746, 'characters that': 1675, 'were in': 9533, 'first film': 2881, 'was written': 9412, 'written by': 9884, 'had the': 3356, 'ended up': 2440, 'good as': 3237, 'effects and': 2390, 'performances from': 6126, 'it to be': 4417, 'have been better': 3446, 'the first film': 7900, 'as the first': 774, 'as good as': 739, 'special effects and': 7215, 'neat': 5420, 'ingredients': 4018, 'walter': 9298, 'sidekick': 7031, 'loose': 4846, 'interest': 4051, 'shape': 6946, 'solve': 7144, 'stone': 7326, 'has all': 3407, 'middle aged': 5117, 'love interest': 4876, 'the crime': 7818, 'there also': 8348, 'out for': 5982, 'movie where': 5307, 'at one': 830, 'one point': 5880, 'no wonder': 5490, 'he didn': 3499, 'takes place in': 7499, 'at one point': 831, 'multi': 5349, 'inner': 4021, 'discussion': 2201, 'class': 1739, 'compared': 1832, '17': 15, 'african': 178, 'helping': 3564, 'dress': 2321, 'mirror': 5153, 'technique': 7532, 'africa': 177, 'driver': 2329, 'on in': 5818, 'the relationship': 8140, 'relationship between': 6524, 'compared to': 1833, 'film had': 2794, 'year old': 9892, 'african american': 179, 'scene the': 6762, 'use the': 9178, 'or more': 5934, 'is perfect': 4206, 'that no': 7663, 'the relationship between': 8141, 'compared to the': 1834, 'the part of': 8094, 'bomb': 1164, '25': 39, 'minutes into': 5149, 'why is': 9674, 'that bad': 7603, 'bad movies': 926, 'good looking': 3250, 'was done': 9345, 'could get': 1916, 'these movies': 8390, 'get into': 3155, 'have come': 3450, 'come from': 1789, 'action movie': 122, 'laughed': 4650, 'inept': 4013, 'gags': 3122, 'rolling': 6655, 'biggest': 1119, 'gag': 3121, 'way through': 9464, 'with each': 9726, 'other and': 5957, 'jokes and': 4501, 'the biggest': 7764, 'seemed to': 6859, 'leaving the': 4683, 'the way through': 8275, 'with each other': 9727, 'each other and': 2362, 'fears': 2723, 'animated': 582, 'nobody': 5492, 'had it': 3348, 'have any': 3444, 'anybody': 612, 'wwii': 9889, 'begin': 1043, 'frustration': 3095, 'thats': 7715, 'germany': 3150, 'massive': 5019, 'poverty': 6268, 'pile': 6172, 'to understand': 8912, 'from what': 3090, 'now the': 5586, 'the true': 8243, 'begin to': 1044, 'understand how': 9101, 'them br': 8322, 'the subject': 8216, 'of human': 5655, 'life as': 4723, 'nothing more': 5571, 'really the': 6483, 'the key': 7967, 'for no': 2974, 'following the': 2934, 'of crap': 5636, 'to throw': 8907, 'than this': 7584, 'all the time': 261, 'at the time': 837, 'them br br': 8323, 'nothing more than': 5572, 'piece of crap': 6169, 'acts': 139, 'guess': 3327, 'wins': 9711, 'dancing': 2010, 'thousand': 8613, 'up with': 9162, 'their own': 8315, 'up as': 9143, 'movie in': 5268, 'even more': 2527, 'she doesn': 6958, 'she just': 6965, 'br from': 1282, 'on you': 5844, 'guess the': 3329, 'she gets': 6960, 'job and': 4488, 'just so': 4537, 'it has been': 4338, 'come up with': 1794, 'movie in the': 5269, 'br br from': 1232, '2005': 35, 'studios': 7388, 'sorts': 7194, 'scale': 6745, 'end it': 2433, 'characters the': 1676, 'long and': 4825, 'the major': 8009, 'movie this': 5299, 'this will': 8582, 'rate this': 6429, 'of 10': 5614, 'the end it': 7848, 'lot of people': 4864, 'feels': 2738, 'heroic': 3609, 'presents': 6292, 'attraction': 865, 'suspenseful': 7478, 'tone': 8939, 'it feels': 4323, 'not exactly': 5524, 'exactly the': 2570, 'to deliver': 8745, 'out his': 5984, 'whole lot': 9664, 'appeal to': 634, 'isn really': 4275, 'the climax': 7804, 'show in': 7006, 'he is the': 3512, 'to get to': 8779, 'sidney': 7033, 'hollow': 3705, 'masterpiece': 5021, 'constantly': 1871, 'result': 6587, 'possibly': 6263, 'to ask': 8705, 'happens to': 3391, 'the result': 8144, 'that my': 7661, 'get any': 3151, 'br one': 1303, 'nothing in': 5568, 'the law': 7981, 'to say that': 8859, 'br br one': 1248, 'miike': 5126, 'favorite': 2717, 'loud': 4869, 'obnoxious': 5598, 'includes': 3997, 'drag': 2307, 'costume': 1911, 'outstanding': 6013, 'supposedly': 7454, 'monsters': 5185, 'makeup': 4966, 'shadow': 6940, 'tight': 8647, 'outfit': 6008, 'lucy': 4903, 'teenage': 7537, 'voices': 9277, 'moving': 5329, 'castle': 1615, 'film not': 2815, 'many films': 4991, 'to like': 8808, 'like in': 4742, 'but like': 1442, 'to move': 8826, 'you ve': 9965, 'came from': 1525, 'everyone else': 2554, 'one is': 5865, 'the art': 7736, 'the look': 8003, 'look of': 4835, 'is played': 4208, 'you ve got': 9966, 'has to be': 3431, 'movie and it': 5240, 'involved in the': 4083, 'this one is': 8552, 'outcome': 6006, 'remains': 6538, 'forgot': 3021, 'intention': 4049, 'occasionally': 5607, 'zone': 9999, 'sloppy': 7089, 'feeling that': 2736, 'to end': 8757, 'was to': 9400, 'of the plot': 5724, 'centered': 1630, 'struggles': 7381, 'episodes': 2487, 'focused': 2923, 'florida': 2916, 'struggle': 7379, 'provide': 6359, 'esther': 2507, 'bright': 1361, 'fat': 2710, 'suffered': 7426, 'breaking': 1350, 'legs': 4695, 'air': 215, 'seasons': 6813, 'the poor': 8117, 'family and': 2682, 'struggle to': 7380, 'had great': 3347, 'and michael': 458, 'who made': 9649, 'off his': 5773, 'his character': 3659, 'not for': 5525, 'began to': 1042, 'more on': 5204, 'show that': 7009, 'was no': 9369, 'no longer': 5479, 'obvious that': 5603, 'the air': 7731, 'quality of the': 6394, 'reunion': 6598, 'clark': 1738, 'superman': 7445, 'emotions': 2421, 'thrilling': 8624, 'friendship': 3067, 'lesson': 4702, 'strictly': 7368, 'contrast': 1885, 'has made': 3421, 'ready to': 6458, 'save the': 6719, 'end but': 2431, 'stick to': 7314, 'to what': 8921, 'without any': 9768, 'this episode': 8478, 'give it': 3183, 'to save the': 8856, 'nation': 5405, 'historical': 3689, 'daily': 2003, 'names': 5399, 'worlds': 9828, 'answer': 596, 'manner': 4989, 'grows': 3323, 'happened in': 3387, 'we were': 9489, 'moments of': 5176, 'who knows': 9646, 'are we': 698, 'the person': 8103, 'is there': 4248, 'somewhere in': 7181, 'with my': 9741, 'lived in': 4803, 'expect to': 2600, 'do this': 2222, 'pretentious': 6296, 'clichés': 1749, 'dialog': 2130, 'shock': 6976, 'drivel': 2327, 'designed': 2105, 'satire': 6714, 'refuses': 6513, 'discuss': 2200, 'are supposed': 689, 'to their': 8897, 'years after': 9894, 'this day': 8475, 'refuses to': 6514, 'br anyway': 1207, 'of humor': 5656, 'for many': 2967, 'are supposed to': 690, 'what it was': 9561, 'to have been': 8786, 'br br anyway': 1219, 'max': 5032, 'jet': 4482, 'allowing': 279, 'unintentionally': 9119, 'halfway': 3365, 'amazed': 310, 'aka': 217, 'warrior': 9324, 'albeit': 222, 'lousy': 4871, 'cameo': 1528, 'appearance': 639, 'sake': 6699, 'cars': 1597, 'driven': 2328, 'explosion': 2619, 'chases': 1687, 'wild': 9685, 'tough': 8971, 'choreographed': 1712, 'unintentional': 9118, 'nights': 5472, 'texas': 7571, 'knock': 4589, 'cheese': 1696, 'the road': 8148, 'work br': 9805, 'br why': 1336, 'was actually': 9329, 'by it': 1501, 'way in': 9456, 'that make': 7653, 'sake of': 6700, 'for few': 2955, 'few minutes': 2753, 'the general': 7920, 'shot of': 6992, 'up his': 9151, 'his face': 3661, 'like he': 4740, 'comes off': 1807, 'the back of': 7742, 'work br br': 9806, 'br br why': 1267, 'believing': 1073, 'comparison': 1835, 'roberts': 6640, 'superb': 7443, 'wondered': 9790, 'brother': 1376, '50': 44, 'so far': 7109, 'way it': 9457, 'for more': 2970, 'the play': 8108, 'is superb': 4230, 'movies with': 5328, 'good actors': 3235, 'in case': 3876, 'case of': 1603, 'is clearly': 4130, 'recommend this': 6500, 'be on': 979, 'the way it': 8272, 'that they are': 7690, 'recommend this film': 6501, 'atrocious': 848, 'buried': 1396, 'month': 5187, 'coffee': 1768, 'wave': 9450, 'dance': 2008, 'felt like': 2744, 'just watched': 4542, 'see that': 6837, 'an actual': 326, 'everything about': 2558, 'acting the': 117, 'scenes the': 6777, 'over and': 6016, 'and over': 481, 'be that': 988, 'it now': 4379, 'and some': 498, 'yet the': 9911, 'my head': 5379, 'but it was': 1439, 'that there is': 7686, 'but it just': 1437, 'the story the': 8209, 'over and over': 6017, 'it will be': 4441, 'rap': 6422, 'clothes': 1760, 'somehow': 7166, 'protect': 6354, 'bedroom': 1025, 'tell me': 7544, 'know this': 4597, 'movie could': 5252, 'including the': 3999, 'guess it': 3328, 'to protect': 8844, 'scene where': 6764, 'movie just': 5281, 'it isn': 4358, 'the money': 8030, 'one more': 5870, 'did he': 2142, 'this movie could': 8531, 'scene where the': 6765, 'this movie just': 8539, 'independent': 4005, 'haven seen': 3489, 'films but': 2849, 'thought this': 8609, 'direction and': 2181, 'it over': 4389, 'have to be': 3482, 'very well done': 9235, 'in which the': 3989, 'stinker': 7321, 'captain': 1573, 'teenagers': 7539, 'simon': 7045, 'stole': 7323, 'brief': 1359, 'changing': 1648, 'and lot': 450, 'regarding': 6516, 'an hour': 344, 'again it': 199, 'can go': 1544, 'br like': 1294, 'problem is that': 6323, 'br br like': 1240, 'but that is': 1460, 'that is not': 7642, 'extra': 2624, 'luke': 4906, 'anna': 587, 'laughing': 4651, 'everybody': 2551, 'lets': 4709, 'the planet': 8107, 'the sex': 8179, 'but with': 1487, 'and interesting': 437, 'the supporting': 8218, 'supporting cast': 7449, 'keep you': 4552, 'these films': 8388, 'films and': 2845, 'little too': 4797, 'was little': 9361, 'and the rest': 519, 'the supporting cast': 8219, 'spite': 7233, 'earlier': 2363, 'increasingly': 4001, 'doomed': 2290, 'lynch': 4909, 'uncomfortable': 9094, 'succeeded': 7411, 'nearly': 5418, 'genius': 3143, 'nothing about': 5565, 'did this': 2148, 'this with': 8583, 'films that': 2855, 'into it': 4068, 'found myself': 3038, 'out loud': 5988, 'in spite': 3934, 'spite of': 7234, 'although the': 300, 'aspect of': 800, 'sex scenes': 6935, 'that so': 7677, 'purpose of': 6378, 'of making': 5666, 'and while': 556, 'is some': 4225, 'is excellent': 4139, 'were to': 9539, 'of the way': 5732, 'in spite of': 3935, 'the film to': 7892, 'seems to have': 6867, 'film is not': 2803, 'there is some': 8366, 'is the first': 4241, 'out to be': 6003, 'solid': 7143, 'grab': 3277, 'film really': 2819, 'it with': 4442, 'performances by': 6125, 'in addition': 3862, 'which would': 9619, 'but the film': 1462, 'summer': 7438, 'horses': 3736, 'antics': 600, 'disbelief': 2195, 'brilliantly': 1364, 'even as': 2518, 'this great': 8498, 'we had': 9478, 'to imagine': 8795, 'these people': 8391, 'had an': 3345, 'so they': 7124, 'wish could': 9715, 'just for': 4528, 'movies but': 5317, 'buy it': 1492, 'splendid': 7235, 'grade': 3279, 'page': 6042, 'inevitable': 4014, 'asian': 791, 'executive': 2592, 'stellar': 7303, 'powers': 6273, 'wooden': 9796, 'mgm': 5112, 'feelings': 2737, 'mere': 5103, 'returns': 6597, 'realizing': 6472, 'laughter': 4653, 'disaster': 2194, 'way this': 9463, 'and director': 385, 'took the': 8956, 'his mind': 3674, 'once you': 5850, 'it good': 4331, 'is going': 4152, 'to really': 8850, 'his best': 3656, 'her performance': 3586, 'performance in': 6118, 'in history': 3894, 'that being': 7605, 'being said': 1057, 'you need': 9951, 'though not': 8598, 'best and': 1082, 'the novel': 8067, 'he had': 3506, 'was his': 9355, 'considering the': 1866, 'of real': 5689, 'well with': 9521, 'of it and': 5658, 'there was no': 8378, 'as an actor': 726, 'is going to': 4154, 'then there is': 8342, 'you need to': 9952, 'and one of': 475, 'for the rest': 2988, 'of the cast': 5704, 'the time and': 8231, 'him in the': 3639, 'in the cast': 3943, 'edited': 2382, 'joey': 4494, 'scream': 6794, 'featuring': 2727, 'gay': 3136, 'giant': 3172, 'funnier': 3106, 'frankly': 3051, 'finish': 2876, 'wearing': 9495, 'and directed': 384, 'it sounds': 4407, 'good enough': 3243, 'be considered': 966, 'the sake': 8153, 'know who': 4599, 'from start': 3079, 'start to': 7275, 'to finish': 8774, 'say about': 6731, 'way that': 9460, 'enough to be': 2469, 'for the sake': 2990, 'the sake of': 8154, 'with the same': 9752, 'from start to': 3080, 'start to finish': 7276, 'about the movie': 71, 'timeless': 8674, 'irish': 4089, 'covered': 1941, 'views': 9256, 'daniel': 2014, 'best films': 1084, 'the use': 8255, 'really is': 6479, 'it probably': 4391, 'you haven': 9938, 'is something': 4226, 'there for': 8359, 'for all': 2943, 'this film in': 8487, 'the use of': 8256, 'it really is': 4394, 'if you haven': 3828, 'you haven seen': 9939, 'since this': 7054, 'this just': 8516, 'the government': 7926, 'possible to': 6262, 'no less': 5478, 'may not': 5037, 'man to': 4978, 'were some': 9537, 'shots of': 6995, 'gave this': 3135, 'the movie but': 8041, 'movie but it': 5249, 'there were some': 8381, 'embarrassed': 2414, 'to how': 8794, 'late night': 4638, 'have ever seen': 3453, 'bunch': 1394, 'meeting': 5078, 'walk': 9288, 'door': 2291, 'lie': 4719, 'survive': 7472, 'scientists': 6788, 'remain': 6537, 'matrix': 5024, 'mainstream': 4939, 'movie starts': 5292, 'starts out': 7283, 'bunch of': 1395, 'our hero': 5973, 'is given': 4151, 'we ve': 9488, 'through this': 8631, 'and take': 506, 'br he': 1284, 'in different': 3878, 'he finds': 3502, 'to survive': 8883, 'as long': 754, 'long as': 4826, 'they do': 8404, 'these two': 8392, 'not know': 5537, 'approach to': 651, 'it then': 4413, 'fight scenes': 2763, 'scenes with': 6779, 'is based': 4113, 'however the': 3767, 'is fantastic': 4141, 'some more': 7149, 'video store': 9247, 'everyone is': 2556, 'and then the': 525, 'br br he': 1234, 'as long as': 755, 'lacked': 4618, 'lugosi': 4905, 'drop': 2332, 'stolen': 7324, 'elizabeth': 2406, 'reporter': 6569, 'estate': 2506, 'looking at': 4839, 'the sets': 8177, 'meant to': 5069, 'things like': 8444, 'as his': 743, 'the young': 8304, 'male': 4971, 'suitable': 7434, 'tracy': 8983, 'times and': 8676, 'known as': 4604, 'the male': 8013, 'his role': 3682, 'whole movie': 9665, 'to be very': 8717, 'the whole movie': 8279, 'griffith': 3309, 'filmmaker': 2842, '11': 8, 'gothic': 3273, 'melodrama': 5081, 'allen': 275, 'concerns': 1851, 'king': 4584, 'sadistic': 6691, 'johnson': 4497, 'private': 6317, 'latest': 4643, 'achievement': 106, 'fallen': 2670, 'henry': 3567, 'built': 1392, 'discovered': 2198, 'creating': 1955, 'continuity': 1882, 'actions': 125, 'suffers': 7428, 'captured': 1575, 'greatly': 3304, 'effect': 2386, 'madness': 4927, 'replaced': 6567, 'wall': 9295, 'serve': 6914, 'of two': 5752, 'beginning to': 1049, 'was probably': 9378, 'form of': 3024, 'times the': 8682, 'the king': 7973, 'to enjoy': 8758, 'inside the': 4026, 'the wife': 8281, 'suspense and': 7477, 'and must': 464, 'admit that': 161, 'what would': 9575, 'subject matter': 7404, 'suffers from': 7429, 'of just': 5662, 'performances are': 6124, 'the room': 8152, 'well to': 9520, 'that their': 7683, 'is an excellent': 4106, 'the time the': 8234, 'as the film': 773, 'steel': 7302, 'explaining': 2613, 'information': 4017, 'useless': 9182, 'professor': 6339, 'birds': 1124, 'failing': 2656, 'ward': 9317, 'dire': 2175, 'weapons': 9493, 'convince': 1892, 'adults': 165, 'to present': 8842, 'was this': 9399, 'the documentary': 7835, 'and find': 404, 'of other': 5684, 'to convince': 8738, 'came to': 1527, 'was only': 9375, 'me that': 5053, 'are as': 658, 'this if': 8501, 'have read': 3470, 'out of this': 5996, 'to have the': 8787, 'much better than': 5338, 'anime': 585, 'stereotypical': 7309, 'extreme': 2627, 'cases': 1604, 'movements': 5233, 'picked': 6159, 'cartoon': 1599, 'network': 5444, '2000': 31, 'dubbing': 2341, 'flawless': 2909, 'prime': 6309, 'deeply': 2069, 'space': 7207, 'peace': 6093, 'elaborate': 2400, 'something else': 7172, 'only be': 5892, 'just be': 4522, 'of art': 5625, 'br to': 1327, 'series was': 6911, 'picked up': 6160, 'best to': 1092, 'series is': 6909, 'plot of': 6217, 'and no': 467, 'which was': 9618, 'to many': 8819, 'even have': 2522, 'feel that': 2732, 'that any': 7598, 'good reason': 3255, 'be in the': 975, 'it is an': 4348, 'br br to': 1258, 'the plot of': 8112, 'of the series': 5727, 'to the plot': 8893, 'violent': 9263, 'ms': 5332, 'de': 2037, 'affair': 171, 'prince': 6310, 'realistic': 6466, 'affair with': 172, 'interest in': 4052, 'christian': 1718, 'rule': 6675, 'admire': 159, 'bible': 1112, 'code': 1767, 'always been': 305, 'job of': 4491, 'familiar with': 2679, 'one could': 5859, 'it even': 4322, 'to anyone': 8703, 'movie have ever': 5264, 'recommend it to': 6499, 'university': 9127, 'woods': 9797, 'department': 2087, 'some reason': 7159, 'didn get': 2152, 'involved with': 4084, 'who did': 9636, 'two of': 9074, 'the woods': 8287, 'thing is': 8436, 'br it was': 1292, 'for some reason': 2978, 'br there is': 1321, 'two of the': 9075, 'wished': 9716, 'to buy': 8727, 'would like': 9857, 'was very good': 9407, 'recommend this movie': 6502, 'this movie to': 8545, 'would like to': 9858, 'like to see': 4758, 'bother': 1181, 'mild': 5128, 'gotta': 3274, 'patrick': 6089, 'fault': 2715, 'after watching': 190, 'there not': 8371, 'writer director': 9878, 'not been': 5518, 'br was': 1330, 'please don': 6207, 'with this movie': 9758, 'br br was': 1261, 'kicks': 4563, 'teeth': 7541, 'justify': 4544, 'emotional': 2419, 'evident': 2565, 'over again': 6015, 'again br': 196, 'us that': 9171, 'led to': 4685, 'and over again': 482, 'again br br': 197, 'to believe that': 8723, 'ticket': 8644, 'sat': 6712, '1st': 27, 'portray': 6250, 'fix': 2902, 'then we': 8345, 'to portray': 8841, 'and plot': 485, 'so if': 7113, 'but don': 1418, 'don expect': 2259, 'characters br': 1668, 'went to see': 9531, 'point of the': 6229, 'seemed to be': 6860, 'so if you': 7114, 'characters br br': 1669, 'entertained': 2474, 'mom': 5171, 'waters': 9449, 'fame': 2677, 'changes': 1647, 'nearly as': 5419, 'about how': 66, 'this film br': 8483, 'that is what': 7644, 'br it is': 1291, 'depressing': 2092, 'speak': 7210, 'middle of': 5118, 'to other': 8834, 'show the': 7010, 'people were': 6105, 'they could': 8400, 'has very': 3432, 'moment of': 5173, 'movie not': 5285, 'your own': 9992, 'the middle of': 8025, 'middle of the': 5119, 'raymond': 6438, 'ensemble': 2470, 'perfection': 6111, 'bone': 1166, 'creators': 1958, 'rules': 6676, 'competent': 1837, 'field': 2760, 'professional': 6338, 'australia': 872, 'be one': 980, 'come out': 1791, 'hilarious and': 3628, 'the british': 7774, 'as being': 730, 'dialogue and': 2135, 'which it': 9613, 'of comedy': 5633, 'of years': 5764, 'particularly the': 6072, 'the role': 8149, 'used in': 9180, 'would have to': 9856, 'to be one': 8714, 'be one of': 981, 'of the funniest': 5712, 'the role of': 8150, 'smaller': 7096, 'projects': 6344, 'lies': 4720, 'fool': 2938, 'food': 2937, 'ties': 8646, 'handled': 3375, 'deadly': 2040, 'performed': 6129, 'covers': 1942, 'philosophical': 6150, 'material': 5023, 'range': 6420, 'ring': 6625, 'gang': 3126, 'comical': 1813, 'atmospheric': 847, 'visually': 9272, 'subtitles': 7408, 'reaches': 6448, 'styles': 7400, 'worthless': 9843, 'specific': 7218, 'few of': 2754, 'his films': 3665, 'them and': 8319, 'see why': 6844, 'br at': 1210, 'the lives': 7998, 'lives of': 4807, 'mix of': 5165, 'live action': 4799, 'be as': 964, 'that just': 7651, 'making it': 4968, 'from all': 3069, 'even worse': 2535, 'whole film': 9663, 'is completely': 4132, 'the material': 8018, 'like you': 4760, 'of fun': 5643, 'the animation': 7734, 'the tone': 8237, 'animation is': 584, 'atmosphere of': 846, 'be done': 968, 'was all': 9330, 'not an': 5512, 'for film': 2956, 'film like': 2810, 'bit too': 1130, 'great and': 3291, 'be sure': 986, 'sure to': 7460, 'world is': 9823, 'those that': 8593, 'cannot be': 1569, 'with this one': 9759, 'br br at': 1221, 'the lives of': 7999, 'the whole film': 8278, 'lot of fun': 4863, 'even if you': 2525, 'this film but': 8484, 'is film that': 4144, 'even though it': 2531, 'brad': 1341, 'uninteresting': 9120, 'un': 9088, 'what about': 9547, 'so why': 7132, 'contains': 1874, 'taylor': 7523, 'tense': 7558, 'walker': 9292, 'grasp': 3286, 'ease': 2368, 'expression': 2621, 'clue': 1762, 'kidnapped': 4565, 'breaks': 1351, 'dressed': 2322, 'mixed': 5166, 'convey': 1891, 'dick': 2139, 'attempting': 857, 'oddly': 5612, 'some scenes': 7160, 'moments in': 5175, 'face and': 2637, 'is over': 4205, 'to compare': 8736, 'times in': 8680, 'what she': 9567, 'other hand': 5960, 'we re': 9484, 'left to': 4690, 'the door': 7836, 'take the': 7495, 'through his': 8628, 'are trying': 695, 'this type': 8574, 'the short': 8181, 'too bad': 8944, 'pair of': 6051, 'that might': 7657, 'attempting to': 858, 'on the other': 5830, 'the other hand': 8089, 'this type of': 8575, 'souls': 7196, 'internet': 4060, '2006': 36, 'people of': 6102, 'anything to': 622, 'to pick': 8838, 'the internet': 7962, 'it down': 4321, 'done by': 2284, 'movie is the': 5276, 'will not be': 9696, 'kills': 4576, 'chick': 1700, 'civil': 1733, 'rights': 6624, 'treatment': 9002, 'correct': 1907, 'hype': 3790, 'bet': 1093, 'vacation': 9191, 'hood': 3716, 'the modern': 8028, 'me is': 5049, 'respect for': 6579, 'anything else': 620, 'she does': 6957, 'she wants': 6967, 'in common': 3877, 'with you': 9763, 'as if they': 747, 'if they were': 3820, 'brand': 1345, 'quirky': 6402, 'woody': 9798, 'recognize': 6496, 'eating': 2376, 'animal': 580, 'student': 7385, 'victim': 9240, 'worthwhile': 9844, 'hey': 3613, 'bergman': 1079, 'was over': 9376, 'over it': 6019, 'is hard': 4157, 'woody allen': 9799, 'film itself': 2808, 'is such': 4229, 'caught up': 1623, 'as any': 727, 'take on': 7493, 'author': 875, 'adorable': 163, 'starting': 7280, 'wonder why': 9789, 'davies': 2028, 'captures': 1576, 'flynn': 2920, 'and john': 444, 'even with': 2534, 'just can': 4524, 'hate it': 3436, 'tries to be': 9016, 'even if it': 2524, '60s': 46, 'hamilton': 3368, 'julia': 4509, 'jeremy': 4476, 'annie': 589, 'storyline': 7355, 'incoherent': 4000, 'film about': 2773, 'of both': 5629, 'the excellent': 7862, 'the storyline': 8211, 'is killed': 4172, 'through and': 8627, 'out of 10': 5990, 'suck': 7420, 'holds': 3701, 'execution': 2591, 'left with': 4691, 'did it': 2144, 'did the': 2146, 'it when': 4439, 'all it': 246, 'understand why': 9105, 'pile of': 6173, 'in america': 3867, 'an awful': 335, 'that is the': 7643, 'price': 6304, 'murphy': 5357, 'eva': 2515, 'jay': 4470, 'all those': 267, 'on him': 5814, 'is little': 4175, 'to watch this': 8920, 'cried': 1968, 'denzel': 2086, 'believe me': 1066, 'this man': 8520, 'so was': 7127, 'now and': 5582, 'because he': 1006, 'time was': 8669, 'was watching': 9408, 'marie': 5003, 'shop': 6983, 'willing': 9702, 'raise': 6415, 'nurse': 5597, 'boot': 1170, 'asked': 795, 'et': 2508, 'theatrical': 8311, 'film will': 2835, 'br now': 1298, 'live with': 4801, 'willing to': 9703, 'found out': 3039, 'someone else': 7168, 'even get': 2521, 'his new': 3678, 'love and': 4874, 'title of': 8690, 'character of': 1659, 'the mother': 8037, 'mother and': 5223, 'what do': 9550, 'all very': 272, 'br br now': 1244, 'comedian': 1795, 'spin': 7228, 'colors': 1777, 'starred': 7268, 'pleasure': 6209, 'jamie': 4464, 'movie with': 5310, 'big screen': 1117, 'her role': 3587, 'seeing it': 6847, 'definitely worth': 2074, 'it deserves': 4315, 'than it': 7578, 'to give it': 8781, 'going to happen': 3228, 'the big screen': 7763, '15 minutes': 13, 'are great': 667, 'awful and': 894, 'made with': 4926, 'with good': 9729, 'better off': 1099, 'this film the': 8491, 'parody': 6061, 'opportunities': 5916, 'newspaper': 5459, 'sent': 6895, 'scientist': 6787, 'discover': 2197, 'roger': 6646, 'universal': 9125, 'condition': 1854, 'psychotic': 6367, 'to discover': 8748, 'are being': 660, 'to put': 8847, 'way too': 9466, 'after this': 189, 'and much': 462, 'the classic': 7803, 'stars as': 7271, 'is not as': 4191, 'you ve seen': 9967, 'blown': 1152, 'anne': 588, 'billy': 1121, 'great in': 3296, 'never get': 5448, 'tired of': 8687, 'is classic': 4129, 'the word': 8288, 'will get': 9691, 'most people': 5220, 'people will': 6107, 'and that is': 508, 'americans': 316, 'sky': 7079, 'danger': 2012, 'awe': 891, 'dangerous': 2013, 'leader': 4664, 'jim': 4484, 'buying': 1493, 'introduced to': 4076, 'film by': 2785, 'it still': 4409, 'or any': 5923, 'is perhaps': 4207, 'young boy': 9980, 'he knows': 3514, 'him into': 3640, 'one thing': 5884, 'next to': 5461, 'whether or': 9604, 'is well': 4261, 'the voice': 8266, 'going on': 3224, 'voice over': 9276, 'actor but': 128, 'br would': 1338, 'with the film': 9750, 'one of his': 5872, 'whether or not': 9605, 'br br would': 1269, 'urban': 9169, 'hoping': 3723, 'reviewers': 6607, 'this short': 8565, 'it funny': 4328, 'time br': 8652, 'time br br': 8653, 'description': 2098, 'intrigued': 4073, 'know why': 4600, 'and from': 409, 'good to': 3261, 'had me': 3350, 'film when': 2832, 'characters were': 1677, 'about them': 73, 'and hope': 431, 'that everyone': 7621, 'film could': 2787, 'characters and': 1665, 'things are': 8442, 'are going': 664, 'don know why': 2266, 'until the end': 9140, 'the characters were': 7794, 'the characters and': 7791, 'of the actors': 5701, 'are going to': 665, 'maker': 4956, 'occurred': 5609, 'accents': 92, 'irritating': 4093, 'capture': 1574, 'series of': 6910, 'events that': 2539, 'costumes and': 1913, 'fails to': 2658, 'acting in': 114, 'in particular': 3927, 'real and': 6460, 'it looked': 4364, 'the actors are': 7726, 'theaters': 8309, 'convoluted': 1895, 'my friends': 5378, 'went into': 9528, 'what to': 9572, 'when we': 9592, 'your money': 9991, 'money to': 5181, 'idea what': 3796, 'what going': 9551, 'there really': 8373, 'not much': 5540, 'in its': 3897, 'bad that': 927, 'go see': 3211, 'movie is so': 5274, 'what going on': 9552, 'from this movie': 3089, 'and some of': 499, 'so bad that': 7106, 'stereotypes': 7308, 'retarded': 6591, 'wizard': 9774, 'warm': 9318, 'not funny': 5526, 'funny it': 3115, 'takes the': 7500, 'doesn know': 2241, 'know about': 4591, 'and the other': 517, 'vampire': 9195, 'touches': 8969, 'primary': 6308, 'medical': 5074, 'tunes': 9043, 'unsettling': 9137, 'animals': 581, 'device': 2127, 'calls': 1522, 'distance': 2207, 'ghosts': 3171, 'frightening': 3068, 'murders': 5356, 'busy': 1405, 'routine': 6668, 'record': 6504, 'system': 7488, 'smooth': 7102, 'nazi': 5413, 'subplot': 7405, 'hiding': 3616, 'murderer': 5354, 'devoted': 2129, 'learned': 4670, 'dogs': 2251, 'of evil': 5640, 'performance as': 6116, 'scenes from': 6772, 'soundtrack is': 7202, 'opening credits': 5911, 'lives and': 4805, 'and later': 446, 'later in': 4640, 'of violence': 5756, 'as she': 766, 'so we': 7128, 'that of': 7665, 'real people': 6462, 'before you': 1040, 'says that': 6744, 'was as': 9335, 'unfortunately it': 9113, 'work as': 9804, 'to figure': 8767, 'is doing': 4134, 'at their': 840, 'is easily': 4136, 'all around': 235, 'based on the': 949, 'movie to be': 5301, 'the opening credits': 8081, 'in the theater': 3964, 'to figure out': 8768, 'what is going': 9558, 'is going on': 4153, 'briefly': 1360, 'trade': 8984, 'host': 3738, 'ass': 803, 'who had': 9640, 'as result': 764, 'and although': 360, 'my favorite': 5374, 'point in': 6226, 'end and': 2428, 'speaks': 7212, 'efforts': 2394, 'stands': 7260, 'forth': 3028, 'give up': 3189, 'on their': 5832, 'stand up': 7256, 'the face': 7867, 'face of': 2639, 'people and': 6094, 'for those who': 2998, 'in the face': 3947, 'the face of': 7868, 'this movie that': 8543, 'mouse': 5228, 'fly': 2918, 'section': 6823, 'involves': 4085, 'variety': 9198, 'didn have': 2153, 'however this': 3768, 'some pretty': 7157, 'here and': 3592, 'there but': 8358, 'sequel to': 6901, 'here and there': 3593, 'fare': 2702, 'ryan': 6688, 'headed': 3538, 'ex': 2567, 'flight': 2914, 'presentation': 6290, 'eyed': 2630, 'lifetime': 4733, 'the stars': 8201, 'so good': 7110, 'good br': 3240, 'it off': 4380, 'time he': 8656, 'good br br': 3241, 'holding': 3700, 'load': 4816, 'arm': 706, 'personally': 6142, 'ego': 2395, 'beating': 999, 'but only': 1452, 'and who': 558, 'all these': 264, 'he could': 3497, 'this dvd': 8477, 'to check': 8734, 'think he': 8449, 'but if': 1427, 'us with': 9174, 'the film would': 7894, 'up with the': 9163, 'but if you': 1428, 'subsequent': 7406, 'fellow': 2742, 'would ve': 9868, 'aside from': 793, 'show and': 7005, 'of mine': 5670, 'after the first': 187, 'goofy': 3262, 'mess': 5105, 'idiots': 3803, 'meanwhile': 5071, 'futuristic': 3119, 'idiot': 3801, 'sends': 6889, 'robot': 6642, 'dirty': 2190, 'alien': 228, 'dated': 2022, 'are given': 663, 'more to': 5209, 'an evil': 340, 'us to': 9173, 'their way': 8317, 'get back': 3153, 'and more': 459, 'more br': 5197, 'to date': 8741, 'the humor': 7954, 'look and': 4830, 'and feel': 400, 'feels like': 2739, 'was released': 9382, 'even for': 2520, 'it no': 4377, 'both the': 1180, 'the performances': 8100, 'is fun': 4149, 'from the first': 3084, 'more br br': 5198, 'kung': 4611, 'former': 3026, 'plot to': 6220, 'kung fu': 4612, 'his last': 3672, 'by his': 1500, 'other movies': 5961, 'you must': 9950, 'expecting': 2603, 'quest': 6396, 'sword': 7483, 'pace': 6036, 'hopefully': 3721, 'for while': 3004, 'watch br': 9426, 'but after': 1406, 'the pace': 8092, 'have gotten': 3456, 'what made': 9564, 'making the': 4969, 'was pretty': 9377, 'this movie on': 8540, 'watch br br': 9427, 'towards the end': 8977, 'the film that': 7890, 'film that is': 2824, 'exceptional': 2584, 'visuals': 9273, 'hurt': 3787, 'as this': 779, 'you watch': 9970, 'out but': 5980, 'your head': 9987, 'describe': 2096, 'charm': 1684, 'and ve': 546, 'how he': 3754, 'who the': 9653, 'again in': 198, 'to look': 8810, 'the 80': 7718, 'back then': 908, 'got to be': 3272, 'appreciated': 649, 'welcome': 9504, 'legendary': 4694, 'speech': 7220, 'necessary': 5422, 'stays': 7297, 'remembered': 6545, 'expectations': 2601, 'obsessed': 5599, 'grace': 3278, 'artist': 720, 'my heart': 5380, 'is now': 4195, 'but now': 1448, 'as did': 732, 'but all': 1407, 'from it': 3074, 'that did': 7614, 'br do': 1276, 'of modern': 5671, 'obsessed with': 5600, 'br br do': 1226, 'produced': 6330, 'heads': 3539, 'disappointing': 2192, 'duty': 2354, 'argue': 704, 'alexander': 225, 'convinced': 1893, 'to write': 8926, 'point out': 6231, 'out this': 6001, 'but one': 1451, 'known for': 4605, 'after they': 188, 'but by': 1414, 'the name': 8059, 'name of': 5397, 'all is': 245, 'you wonder': 9976, 'wouldn have': 9871, 'for most': 2971, 'have given': 3454, 'before and': 1035, 'and the whole': 522, 'was the best': 9394, 'the name of': 8060, 'the chance to': 7787, 'the film but': 7882, 'campy': 1535, 'breathtaking': 1354, 'dimensional': 2172, 'drawing': 2316, 'is hilarious': 4161, 'and little': 449, 'work is': 9809, 'one dimensional': 5861, 'much and': 5335, 'and goes': 416, 'attention to': 863, 'the camera work': 7777, 'of my favorite': 5677, 'trailer': 8989, 'tender': 7556, 'ordinary': 5946, 'tragic': 8988, 'moon': 5190, 'characterization': 1664, 'court': 1938, 'howard': 3763, 'themes': 8332, 'movie by': 5250, 'the trailer': 8241, 'this little': 8519, 'end is': 2432, 'the moon': 8033, 'the performance': 8099, 'of cinema': 5632, 'the screenplay': 8166, 'in the world': 3969, 'cooper': 1898, 'portrayed': 6253, 'skill': 7074, 'insight': 4027, 'minded': 5138, 'lay': 4659, 'cynical': 2001, 'to accept': 8693, 'the writers': 8299, 'odds': 5613, 'purple': 6376, 'but very': 1480, 'very few': 9225, 'with so': 9745, 'and were': 553, 'worth watching': 9842, 'eddie': 2379, 'san': 6707, 'francisco': 3048, 'but would': 1488, 'so hard': 7111, 'and both': 376, 'we need': 9482, 'cook': 1896, 'explanation': 2615, 'hired': 3654, 'and time': 539, 'money and': 5179, 'and let': 447, 'kay': 4548, 'broadway': 1371, 'arrives': 716, 'hopes': 3722, 'worried': 9829, 'jealous': 4471, 'hates': 3438, 'england': 2452, '45': 43, 'kitchen': 4586, 'saved': 6721, 'dozen': 2304, 'picking': 6161, '1930s': 17, 'many things': 4997, 'in small': 3932, 'in town': 3981, 'can give': 1543, 'on them': 5833, 'need of': 5426, 'be found': 969, 'so she': 7121, 'job in': 4490, 'in real': 3928, 'the woman': 8284, 'how can': 3751, 'of like': 5664, 'the sort': 8191, 'really have': 6478, 'it almost': 4285, 'almost as': 283, 'if someone': 3814, 'was terrible': 9391, 'all over the': 254, 'to find out': 8772, 'turns out to': 9055, 'any movie': 605, 'not seen': 5546, 'is movie': 4181, 'oh and': 5788, 'the younger': 8305, 'to hold': 8793, 'to sleep': 8876, 'this is movie': 8508, 'is movie that': 4182, 'this movie had': 8533, 'deserve': 2100, 'portrays': 6256, 'perform': 6113, 'ultra': 9087, '2004': 34, 'shining': 6973, 'narration': 5401, 'subtle': 7409, 'not so': 5547, 'that only': 7667, 'is probably the': 4212, 'tim': 8649, 'intense': 4047, 'luckily': 4901, 'dignity': 2171, 'alas': 221, 'wood': 9795, 'edward': 2384, 'lesser': 4701, 'burton': 1402, 'he made': 3516, 'could ve': 1924, 'than an': 7573, 'for him': 2959, 'of seeing': 5691, 'ed wood': 2378, 'that would have': 7712, 'alright': 293, 'adding': 152, 'minutes and': 5148, 'is br': 4123, 'funny but': 3113, 'slow and': 7091, 'just not': 4533, 'better than this': 1102, 'is br br': 4124, 'display': 2206, 'outer': 6007, 'boys': 1197, 'revealing': 6601, 'required': 6572, 'be it': 976, 'men and': 5093, 'hit the': 3693, 'the heart': 7938, 'australian': 873, 'accused': 103, 'discovers': 2199, 'extraordinary': 2625, 'spiritual': 7232, 'dramas': 2313, 'best performance': 1090, 'years ago': 9895, 'world br': 9821, 'of the last': 5716, 'world br br': 9822, 'losing': 4854, 'concert': 1852, 'performers': 6130, 'charisma': 1680, 'musical': 5361, 'advantage': 167, 'ad': 143, 'entertainment': 2477, 'on stage': 5827, 'variety of': 9199, 'too long': 8950, 'hitting': 3697, 'spare': 7209, 'eat': 2375, 'are at': 659, 'this but': 8471, 'but they are': 1471, 'and it was': 442, 'it was good': 4426, 'notes': 5563, 'scared': 6747, 'ambitious': 313, 'on video': 5841, 'an all': 328, 'later the': 4642, 'done with': 2288, 'and forth': 407, 're not': 6445, 'back and forth': 900, 'you re not': 9956, 'twelve': 9061, 'mansion': 4990, 'let alone': 4705, 'stiff': 7315, 'plague': 6184, 'service': 6917, 'widmark': 9682, 'warren': 9323, 'panic': 6053, 'bringing': 1366, 'colorful': 1776, 'territory': 7567, 'believes': 1072, 'villains': 9259, 'disease': 2202, 'delivered': 2079, 'relatively': 6528, 'card': 1579, 'reasons': 6490, 'the body': 7766, 'the streets': 8213, 'too far': 8948, 'of new': 5679, 'well but': 9511, 'and characters': 379, 'other characters': 5958, 'this it': 8515, 'that he was': 7634, 'get out of': 3160, 'meaning of': 5065, 'what could': 9549, 'go wrong': 3215, 'movie if': 5266, 'movie there': 5297, 'on this movie': 5836, 'movie if you': 5267, 'ratings': 6435, 'cant': 1570, 'here but': 3598, 'love this': 4881, 'still have': 7318, 'have it': 3458, 'love this movie': 4882, 'this movie should': 8542, 'canada': 1565, 'north': 5509, 'rented this': 6562, 'film making': 2813, 'the history': 7946, 'history of': 3691, 'besides the': 1081, 'great film': 3295, 'the history of': 7947, 'holmes': 3707, 'mrs': 5331, 'clumsy': 1764, 'partner': 6074, 'magnificent': 4934, 'hardy': 3402, 'london': 4822, 'baker': 932, 'the episode': 7858, 'top notch': 8959, 'the cinema': 7799, 'years of': 9901, 'must see': 5370, 'see for': 6826, 'must see for': 5371, 'worst movies': 9836, 'avoid this': 880, 'by all': 1494, 'the worst movies': 8296, 'stated': 7288, 'laid': 4624, 'sci': 6782, 'fi': 2757, 'trite': 9021, 'anyone else': 615, 'else in': 2408, 'made and': 4913, 'or anything': 5924, 'who were': 9658, 'has done': 3412, 'are both': 661, 'sci fi': 6783, 'horror films': 3731, 'tell you': 7546, 'is by': 4126, 'far the': 2700, 'his part': 3680, 'at best': 816, 'film but it': 2784, 'but it doesn': 1435, 'is by far': 4127, 'by far the': 1498, 'the cinematography is': 7801, 'the special effects': 8196, 'scott': 6793, 'haunted': 3440, 'critics': 1978, 'teach': 7525, 'morality': 5193, 'aired': 216, 'carol': 1590, 'so this': 7125, 'yes the': 9907, 'the lack': 7974, 'perhaps the': 6133, 'later on': 4641, 'the street': 8212, 'excellent as': 2578, 'to life': 8807, 'tale of': 7503, 'on television': 5828, 'the lack of': 7975, 'thankfully': 7589, 'gritty': 3313, 'now it': 5584, 'good performances': 3254, 'tall': 7515, 'kate': 4547, 'bob': 1158, 'related': 6522, 'this movie in': 8536, 'lesbian': 4697, 'desperate': 2108, 'sick': 7027, 'something more': 7174, 'than just': 7579, 'the surface': 8220, 'just don': 4527, 'people in': 6099, 'so to': 7126, 'the movie it': 8047, 'the other actors': 8087, 'some of them': 7154, 'legend': 4693, '18': 16, 'gripping': 3312, 'memory': 5091, 'grown': 3321, 'dawn': 2030, 'cameos': 1529, 'louis': 4870, 'revelation': 6603, 'years earlier': 9899, 'his brother': 3657, 'brother and': 1377, 'grown up': 3322, 'story line': 7344, 'line and': 4774, 'and others': 479, 'so when': 7131, 'in those': 3978, 'the stories': 8203, 'love for': 4875, 'him but': 3635, 'film as': 2778, 'much about': 5334, 'not at': 5514, 'but some': 1457, 'her acting': 3568, 'br overall': 1307, 'enjoyed the': 2461, 'movies are': 5314, 'are made': 674, 'can really': 1552, 'films in': 2851, 'the story line': 8207, 'this film as': 8481, 'characters and the': 1666, 'it is still': 4354, 'br br overall': 1250, 'that you can': 7714, 'in their own': 3971, 'endearing': 2438, 'elderly': 2401, 'reasonably': 6489, 'some time': 7163, 'life of': 4729, 'is poor': 4209, 'his life': 3673, 'help but': 3560, 'out as': 5976, 'the human': 7953, 'understand that': 9102, 'to die': 8747, 'him he': 3637, 'has had': 3416, 'with him': 9732, 'ago and': 209, 'the life of': 7990, 'film is the': 2805, 'is the story': 4246, 'along the way': 289, 'years ago and': 9896, 'levels': 4714, 'staged': 7252, 'warner': 9321, 'controversial': 1888, 'president': 6293, 'depression': 2093, 'dear': 2051, 'ruby': 6672, 'bus': 1403, 'swimming': 7482, 'months': 5188, 'scene with': 6766, 'would never': 9862, 'is wonderful': 4267, 'into their': 4071, 'via': 9238, 'struck': 7377, 'cary': 1601, 'grant': 3282, 'slapstick': 7081, 'joan': 4486, 'me as': 5044, 'had no': 3352, 'did they': 2147, 'none of them': 5502, 'terry': 7569, 'pitt': 6176, 'monkeys': 5183, '1996': 26, 'virus': 9267, 'underground': 9098, 'humans': 3776, '1990': 25, 'carrying': 1596, 'must say': 5369, 'after seeing': 184, 'played the': 6197, 'intended to': 4046, 'sent to': 6896, 'he meets': 3518, 'in the future': 3951, 'of the world': 5734, 'delivers': 2080, 'deals': 2046, 'and crew': 381, 'this mess': 8522, 'deals with': 2047, 'leave it': 4677, 'it quite': 4392, 'hard to believe': 3398, 'backdrop': 911, 'politics': 6240, 'relevant': 6532, 'erotic': 2492, 'br yes': 1339, 'story or': 7348, 'sure if': 7456, 'time on': 8661, 'br br yes': 1270, 'absurd': 87, 'that am': 7595, 'to begin': 8719, 'begin with': 1045, 'to begin with': 8720, 'movie that is': 5294, 'hoffman': 3698, 'times br': 8677, 'not br': 5520, 'comedy is': 1800, 'times br br': 8678, 'not br br': 5521, 'bite': 1131, 'hooked': 3717, 'cup': 1990, 'have just': 3459, 'my advice': 5372, 'time you': 8673, 'wears': 9496, 'whoever': 9661, 'really like': 6480, 'about an': 60, 'while he': 9621, 'turns into': 9053, 'you ever': 9928, 'down in': 2299, 'is of': 4197, 'vampires': 9196, 'drinking': 2325, 'usa': 9175, 'stealing': 7299, 'and maybe': 457, 'maybe he': 5040, 'movie really': 5289, 'the famous': 7872, 'true to': 9028, 'the reality': 8136, 'true story': 9027, 'the more': 8034, 'put it': 6385, 'nothing else': 5567, 'most of his': 5216, 'this movie really': 8541, 'true to the': 9029, 'johnny': 4496, 'south': 7204, 'initially': 4020, 'kiss': 4585, 'overly': 6031, 'trap': 8994, 'torn': 8962, 'selling': 6886, 'fourth': 3043, 'gold': 3229, 'turner': 9050, 'location': 4818, 'standard': 7257, 'impact': 3850, 'of death': 5637, 'over to': 6023, 'heart of': 3548, 'is brilliant': 4125, 'everything else': 2559, 'is full': 4147, 'the tension': 8222, 'the scene in': 8159, 'is full of': 4148, 'graphic': 3284, 'ignore': 3834, 'to appreciate': 8704, 'first rate': 2890, 'throughout the film': 8634, 'good as the': 3238, 'shirt': 6975, 'puts': 6389, 'this piece': 8557, 'no other': 5484, 'on any': 5804, 'made to': 4924, 'rent this': 6559, 'on film': 5811, 'his friend': 3667, 'this piece of': 8558, 'to look at': 8811, 'as he is': 741, 'is on the': 4201, 'adventures': 169, 'on with': 5843, 'both of': 1179, 'line is': 4775, 'the hollywood': 7948, 'at once': 829, 'actor in': 129, 'scares': 6748, 'brave': 1347, 'paying': 6092, 'worse than': 9832, 'isn even': 4273, 'way of': 9458, 'in the way': 3967, 'miserably': 5155, 'has ever': 3413, 'when this': 9590, 'one scene': 5881, 'thought it was': 8604, 'treat': 8999, 'blah': 1138, 'tells the': 7549, 'directorial': 2188, 'makers': 4957, 'handle': 3374, 'raped': 6424, 'gift': 3173, 'nonsense': 5504, 'facial': 2642, 'expressions': 2622, 'searching': 6811, 'very different': 9222, 'job as': 4489, 'almost all': 282, 'so long': 7117, 'about her': 63, 'woman in': 9778, 'has nothing': 3425, 'story as': 7336, 'the hands': 7935, 'hands of': 3377, 'story which': 7353, 'in itself': 3898, 'real world': 6463, 'this way': 8581, 'but in this': 1431, 'are in the': 669, 'the hands of': 7936, 'source': 7203, 'realize': 6468, 'hire': 3653, 'understand what': 9104, 'to realize': 8849, 'films with': 2859, 'half the': 3364, 'been an': 1026, 'had just': 3349, 'watching the movie': 9444, 'emperor': 2422, 'send': 6888, 'guard': 3326, 'rescue': 6574, 'promise': 6345, 'twin': 9064, 'combine': 1784, 'creatures': 1960, 'bears': 995, 'her as': 3570, 'is another': 4108, 'to remember': 8852, 'shows up': 7024, 'they both': 8397, 'needs to': 5435, 'have one': 3469, 'the death': 7822, 'who looks': 9648, 'to go to': 8783, 'humour': 3780, 'fifteen': 2761, 'jeff': 4473, 'of story': 5696, 'that good': 7625, 'br for': 1281, 'second half': 6816, 'screen time': 6799, 'without being': 9769, 'on its own': 5821, 'br br for': 1231, 'the second half': 8171, 'succeeds': 7412, 'letter': 4710, 'brilliance': 1362, 'china': 1707, 'in another': 3870, 'found in': 3036, 'turned out': 9048, 'turned out to': 9049, 'story lines': 7345, 'was excellent': 9347, 'of the time': 5730, 'it was just': 4428, 'poignant': 6224, 'eve': 2516, 'owner': 6035, 'dinner': 2173, 'delightful': 2077, 'for one': 2975, 'character the': 1661, 'each of': 2360, 'all have': 241, 'this scene': 8563, 'this very': 8577, 'he would': 3536, 'about the film': 70, 'included': 3996, 'fx': 3120, 'seems like': 6863, 'regardless': 6517, 'task': 7521, 'of old': 5681, 'romantic comedy': 6659, 'comedy that': 1801, 'walken': 9291, 'cusack': 1996, 'the ones': 8073, 'the former': 7911, 'who gets': 9639, 'didn care': 2150, 'ancient': 351, 'and why': 559, 'are they': 693, 'apart from': 627, 'lord of': 4849, 'you ll be': 9945, 'lord of the': 4850, 'problems with': 6326, 'this movie but': 8530, 'this is good': 8505, 'not to mention': 5553, 'elsewhere': 2410, 'countries': 1929, 'ourselves': 5974, 'massacre': 5018, 'redeeming': 6506, 'tortured': 8964, 'work of': 9810, 'in such': 3936, 'to capture': 8729, 'has its': 3419, 'that seems': 7673, 'that her': 7635, 'we learn': 9481, 'so what': 7130, 'we don': 9475, 'don need': 2270, 'only for': 5895, 'world the': 9825, 'of three': 5748, 'death of': 2054, 'result of': 6589, 'turned into': 9047, 'put the': 6387, 'say that this': 6737, 'in the right': 3959, 'is very good': 4259, 'as if it': 745, 'of the day': 5706, 'this is just': 8507, 'for all the': 2944, 'express': 2620, 'complicated': 1843, 'neighborhood': 5439, 'secondly': 6818, 'suffer': 7425, 'watched the': 9437, 'movie he': 5265, 'two main': 9073, 'started to': 7279, 'of man': 5667, 'to recommend': 8851, 'like this movie': 4755, 'embarrassing': 2415, 'hip': 3652, 'but because': 1413, 'to laugh': 8803, 'to those': 8905, 'is so bad': 4224, 'ruin': 6673, 'arnold': 709, 'appalling': 630, 'breasts': 1352, 'appealing': 635, 'mysterious': 5391, 'demon': 2082, 'bad movie': 925, 'for what': 3002, 'his job': 3671, 'who want': 9654, 'films this': 2857, 'to be in': 8712, 'it might be': 4373, 'first two': 2894, 'the first two': 7906, 'uneven': 9108, 'mildly': 5129, 'sexuality': 6938, 'happily': 3393, 'emotionally': 2420, 'scary': 6749, 'screenwriter': 6802, 'the books': 7769, 'very entertaining': 9224, 'drama and': 2312, 'film ever': 2790, 'writing and': 9881, 'and acting': 352, 'also very': 297, 'mean that': 5063, 'film makers': 2812, 'are too': 694, 'it is so': 4353, 'the film makers': 7889, 'crash': 1949, 'composed': 1844, 'lisa': 4782, 'was expecting': 9348, 'as though': 780, 'as bad': 728, 'bad as': 915, 'the movie had': 8043, 'br one of': 1304, 'as bad as': 729, 'mountain': 5226, 'tremendous': 9006, 'absolutely no': 85, 'there nothing': 8372, 'in which he': 3988, 'row': 6669, 'committed': 1827, 'liked this': 4764, 'boat': 1157, 'if she': 3813, 'she can': 6953, 'little girl': 4794, 'everything is': 2561, 'annoying and': 592, 'me want': 5057, 'funny the': 3116, 'too hard': 8949, 'it never': 4376, 'br the acting': 1311, 'me want to': 5058, 'this movie br': 8529, 'also in': 295, 'he plays': 3522, 'version of the': 9218, 'an hour and': 345, 'of the same': 5725, 'only because': 5893, 'the movie for': 8042, 'hill': 3629, 'queen': 6395, 'jump': 4511, 'ken': 4556, 'realism': 6465, 'existence': 2595, 'satan': 6713, 'and do': 386, 'of movie': 5673, 'her boyfriend': 3572, 'they could have': 8401, 'could have done': 1920, 'that there was': 7687, 'are looking': 671, 'after that': 185, 'lines and': 4779, 'even that': 2528, 'you are looking': 9916, 'are looking for': 672, 'cuts': 1999, 'severe': 6932, 'silver': 7042, 'holes': 3703, 'errors': 2493, 'wound': 9872, 'program': 6341, 'burn': 1397, 'produce': 6329, 'show is': 7007, 'you look': 9946, 'and we': 551, 'what we': 9574, 'glad that': 3198, 'very funny': 9226, 'plot holes': 6214, 'attempt at': 854, 'going for': 3223, 'better br': 1097, 'woman who': 9779, 'what kind': 9562, 'here are': 3594, 'people with': 6108, 'man with': 4980, 'to produce': 8843, 'they think': 8423, 'to see that': 8865, 'the movie in': 8045, 'better br br': 1098, 'what kind of': 9563, 'coach': 1766, 'pete': 6145, 'some really': 7158, 'were very': 9540, 'me but': 5047, 'don really': 2271, 'is he': 4159, 'wait for': 9283, 'jumps': 4513, 'fitting': 2899, 'library': 4718, 'acting of': 116, 'as said': 765, 'that wasn': 7702, 'it seems like': 4398, 'what happened to': 9554, 'to just': 8798, 'think it was': 8453, 'tear': 7528, 'ray': 6437, 'to any': 8702, 'can understand': 1561, 'trip to': 9020, 'while they': 9625, 'out from': 5983, 'husband and': 3789, 'well you': 9524, 'it he': 4339, 'just doesn': 4526, 'movie even': 5256, 'thinking about': 8462, 'at the beginning': 834, 'cable': 1513, 'con': 1846, 'nick': 5467, 'hank': 3381, 'claire': 1737, 'foot': 2939, 'on cable': 5808, 'way out': 9459, 'in more': 3907, 'finds out': 2873, 'movie when': 5306, 'grandmother': 3281, 'providing': 6362, 'outside of': 6011, 'cube': 1986, 'nevertheless': 5454, 'first movie': 2883, 'you but': 9919, 'is definitely': 4133, 'to admit': 8697, 'the first movie': 7902, 'have to admit': 3481, 'unnecessary': 9134, 'expert': 2610, 'explicit': 2616, 'part and': 6064, 'many scenes': 4996, 'girl in': 3177, 'with these': 9755, 'that but': 7608, 'plot was': 6221, 'story of the': 7347, 'struggling': 7382, 'mass': 5017, 'productions': 6337, 'contract': 1883, 'your eyes': 9986, 'of love': 5665, 'women and': 9781, 'treated to': 9001, 'scenes in': 6773, 'never really': 5452, 'br some': 1309, 'performance that': 6121, 'movies of': 5323, 'portrayed as': 6254, 'just didn': 4525, 'didn seem': 2157, 'put on': 6386, 'entire movie': 2480, 'seeing the': 6848, 'well br': 9509, 'scenes in the': 6774, 'br br some': 1252, 'parts of the': 6077, 'lot of the': 4865, 'for the movie': 2987, 'they have to': 8412, 'the entire movie': 7857, 'as well br': 787, 'well br br': 9510, 'growing': 3319, 'timing': 8683, 'fred': 3053, 'pleased': 6208, 'trek': 9005, 'the latest': 7979, 'the tv': 8245, 'br have': 1283, 'great acting': 3290, 'edge of': 2381, 'my eyes': 5373, 'but on': 1449, 'br br have': 1233, 'kubrick': 4609, 'spring': 7248, 'stanley': 7261, 'failure': 2659, 'succeed': 7410, 'overlook': 6029, 'danny': 2015, 'nicholson': 5466, 'closing': 1759, 'exact': 2568, 'repeated': 6565, 'infamous': 4015, 'tag': 7490, 'ever since': 2545, 'talk about': 7509, 'the little': 7997, 'either way': 2399, 'do they': 2221, 'the mind': 8027, 'talking to': 7513, 'the hotel': 7951, 'from some': 3078, 'he is in': 3510, 'mountains': 5227, 'moore': 5191, 'anger': 576, 'stan': 7253, 'this crap': 8474, 'watch and': 9425, 'to watch and': 8917, 'for this movie': 2995, 'you have to': 9937, 'overdone': 6028, 'imagined': 3847, 'altogether': 303, 'are there': 692, 'on br': 5805, 'it works': 4444, 'on br br': 5806, 'in the series': 3962, 'consists': 1867, 'exploitation': 2617, 'the third': 8228, 'consists of': 1868, 'not in': 5534, 'and without': 562, 'addition to': 154, 'to these': 8899, 'of watching': 5758, 'selfish': 6884, 'baseball': 946, 'bitter': 1133, 'movie were': 5305, 'another movie': 594, 'to and': 8700, 'movie isn': 5277, 'see some': 6836, 'laugh out': 4647, 'they are all': 8395, 'laugh out loud': 4648, 'jackson': 4460, 'carter': 1598, 'encounter': 2425, '75': 49, 'to meet': 8822, 'called the': 1520, 'the episodes': 7859, 'this show is': 8568, 'qualities': 6391, 'challenge': 1638, 'tony': 8943, 'notable': 5558, 'carefully': 1587, 'sandra': 6709, 'coherent': 1769, 'sons': 7186, 'to leave': 8805, 'movie doesn': 5254, 'in good': 3890, 'felt that': 2745, 'the musical': 8056, 'for the film': 2984, '2001': 32, 'gruesome': 3324, 'sandler': 6708, 'dentist': 2085, 'loses': 4853, 'mike': 5127, 'alan': 220, 'artists': 722, 'one man': 5868, 'into his': 4067, 'she would': 6969, 'most interesting': 5213, 'of music': 5675, 'to talk': 8885, 'think about': 8447, 'to deal': 8742, 'to deal with': 8743, 'my interest': 5381, 'and story': 503, 'their roles': 8316, 'him as': 3632, 'is hard to': 4158, 'rush': 6683, 'crappy': 1948, 'realize that': 6469, 'for any': 2947, 'with any': 9725, 'of ten': 5698, 'else to': 2409, 'is if': 4165, 'it came': 4305, 'of actors': 5617, 'movie all': 5237, 'was some': 9386, 'when it came': 9583, 'cringe': 1973, 'sentence': 6897, 'shakespeare': 6941, 'hamlet': 3369, 'surreal': 7469, 'served': 6915, 'sir': 7061, 'painting': 6049, 'text': 7572, 'just an': 4518, 'two hours': 9072, 'of scenes': 5690, 'this at': 8468, 'at any': 815, 'not in the': 5535, 'movie it was': 5280, 'work for': 9807, 'as film': 735, 'to carry': 8731, 'status': 7292, 'fancy': 2687, 'which she': 9615, 'set in the': 6920, 'keep the': 4551, 'her character': 3577, 'to film': 8770, 'to keep the': 8800, 'when first': 9579, 'the moment': 8029, 'great job': 3297, 'bat': 954, 'pitch': 6175, 'amazingly': 312, 'to describe': 8746, 'anything but': 619, 'most important': 5212, 'set the': 6923, 'the standard': 8199, 'back into': 903, 'picture of': 6164, 'short of': 6986, 'for what it': 3003, 'of new york': 5680, 'doors': 2292, 'stood': 7327, 'that film': 7622, 'why not': 9676, 'highly recommend': 3624, 'interpretation': 4061, 'strike': 7369, 'in london': 3900, 'any real': 609, 'reminded me': 6548, 'of something': 5695, 'interpretation of': 4062, 'reminded me of': 6549, 'up on the': 9156, 'acceptable': 94, 'his name': 3677, 'bad in': 923, 'actors were': 135, 'in way that': 3985, 'all the actors': 257, 'the actors were': 7727, 'at all the': 813, 'structure': 7378, 'hang': 3379, 'threatening': 8617, 'stupidity': 7396, 'craft': 1945, 'susan': 7473, 'listen': 4786, 'while she': 9623, 'of events': 5639, 'one by': 5857, 'by one': 1503, 'as her': 742, 'br no': 1296, 'by the end': 1507, 'in the woods': 3968, 'the death of': 7823, 'br br no': 1242, 'escapes': 2496, 'hints': 3651, 'trick': 9010, 'ridiculously': 6619, 'stranger': 7361, 'anyway the': 624, 'captures the': 1577, 'beginning of the': 1048, 'creates': 1954, 'thought was': 8610, 'cast was': 1613, 'and he is': 427, 'of life': 5663, 'they make': 8415, 'movies this': 5326, 'just how': 4530, 'worthy of': 9846, 'special effects are': 7216, 'recent': 6494, 'element': 2402, 'listen to': 4787, 'it always': 4287, 'that in the': 7640, 'people in the': 6100, 'for another': 2946, 'the earth': 7840, 'this kind': 8517, 'this kind of': 8518, 'caine': 1515, 'anderson': 570, 'lumet': 4907, 'the long': 8002, 'on but': 5807, 'the performances are': 8101, 'can imagine': 1548, 'in world': 3991, 'by her': 1499, 'an almost': 329, 'br after': 1199, 'br br after': 1212, 'revolves': 6610, 'press': 6294, 'drew': 2323, 'revolves around': 6611, 'production of': 6335, 'has great': 3415, 'olivier': 5798, 'awkward': 896, 'wit': 9718, 'logic': 4821, 'arts': 723, 'presence of': 6288, 'worst of': 9837, 'all there': 263, 'why he': 9673, 'is without': 4266, 'without doubt': 9770, 'martial arts': 5012, 'br out': 1305, 'br br out': 1249, 'br out of': 1306, 'web': 9497, 'print': 6313, 'was able': 9326, 'but did': 1416, 'was able to': 9327, 'of the book': 5703, '40': 42, 'is beautiful': 4116, 'robin': 6641, 'williams': 9701, 'contact': 1872, 'has never': 3422, 'this film with': 8494, 'and it has': 440, 'sudden': 7423, 'elephant': 2405, 'margaret': 5001, 'have an': 3443, 'the recent': 8138, 'gets to': 3168, 'for someone': 2979, 'but it not': 1438, 'liked this movie': 4765, 'scorsese': 6792, 'seat': 6814, 'brian': 1355, 'river': 6634, 'clint': 1751, 'eastwood': 2372, 'hoped': 3720, 'claims': 1736, 'sin': 7048, 'dying': 2357, 'experienced': 2606, 'think about it': 8448, 'to the audience': 8888, 'experiences': 2607, 'was bit': 9343, 'beloved': 1076, 'bo': 1155, 'the cat': 7783, 'how could': 3752, 'and such': 505, 'grew': 3306, 'dealt': 2048, 'grew up': 3307, 'it felt': 4324, 'dealt with': 2049, 'in reality': 3930, 'the older': 8071, 'to those who': 8906, 'to see how': 8862, 'dynamic': 2358, 'shoes': 6979, 'to speak': 8878, 'which in': 9610, 'santa': 6710, 'distracting': 2208, 'the villain': 8264, 'comes back': 1805, 'shot and': 6990, 'the other characters': 8088, 'pictures': 6165, 'his movies': 3676, 'sensitive': 6894, 'sentimental': 6898, 'damage': 2005, 'larry': 4634, 'right to': 6623, 'heart and': 3547, 'by their': 1510, 'around and': 711, 'result is': 6588, 'than anything': 7575, 'time as': 8651, 'convincing': 1894, 'effects were': 2392, 'least the': 4675, 'at least the': 826, 'the films': 7896, 'and the characters': 511, 'is the film': 4240, 'secretary': 6821, 'murderous': 5355, 'are only': 681, 'the type': 8247, 'who just': 9645, 'had not': 3353, 'the type of': 8248, 'happens to be': 3392, 'closely': 1757, 'fortune': 3030, 'fever': 2751, 'more in': 5200, 'the wall': 8267, 'the mysterious': 8057, 'of many': 5668, 'wrote the': 9888, 'young man': 9982, 'the leading': 7983, 'the white': 8276, 'the plot and': 8110, 'between the two': 1108, 'proof': 6347, 'appeared': 641, 'songs are': 7185, 'straight to': 7358, 'the worst of': 8297, 'yellow': 9904, 'minimal': 5144, 'li': 4716, 'austen': 871, 'agree with': 211, 'to mind': 8825, 'life the': 4731, 'the exception': 7863, 'exception of': 2583, 'who seems': 9652, 'to love': 8813, 'to convey': 8737, 'they didn': 8403, 'with the exception': 9749, 'the exception of': 7864, 'they should have': 8422, 'menace': 5095, 'hearted': 3549, 'guest': 3331, 'character that': 1660, 'he seems': 3525, 'doesn want': 2248, 'than any': 7574, 'that anyone': 7599, 'and two': 544, 'the secret': 8172, 'killings': 4575, 'himself in': 3648, 'with few': 9728, 'about him': 64, 'girl and': 3176, 'the character of': 7789, 'religious': 6536, 'highlights': 3622, 'bothered': 1182, 'who doesn': 9637, 'line of': 4776, 'the leads': 7984, 'can help but': 1547, 'though they': 8600, 'him with': 3645, 'money on': 5180, 'movie because': 5245, 'and she is': 494, 'the bad guy': 7745, 'this movie because': 8528, 'oscars': 5955, 'cast are': 1608, 'an enjoyable': 337, 'was based': 9339, 'highly recommend this': 3625, 'washington': 9414, 'danes': 2011, 'it by': 4304, 'life that': 4730, 'is done': 4135, 'the atmosphere': 7737, 'as you': 789, 'seem to have': 6856, 'frequently': 3059, 'thing to': 8439, 'for kids': 2964, 'felt the': 2746, 'be great': 972, 'soviet': 7206, 'union': 9121, 'pacino': 6039, 'exercise': 2593, 'madonna': 4928, 'singer': 7056, 'saturday': 6716, 'afternoon': 191, 'andrews': 572, 'to being': 8721, 'the spirit': 8197, 'spirit of': 7230, 'the fun': 7915, 'war ii': 9316, 'world war ii': 9827, 're going': 6440, 'would probably': 9864, 're going to': 6441, 'nancy': 5400, 'emma': 2417, 'believe the': 1069, 'for such': 2981, 'julie': 4510, 'offended': 5779, 'walks': 9294, 'secrets': 6822, 'surrounding': 7471, 'sure that': 7458, 'off and': 5769, 'night of': 5470, 'did in': 2143, 'good performance': 3253, 'may not be': 5038, 'spike': 7227, 'friday': 3061, 'dancer': 2009, 'ralph': 6417, 'academy': 89, 'jr': 4507, 'magazine': 4930, 'birth': 1125, 'shouldn be': 7003, 'ned': 5424, 'sunshine': 7441, 'davis': 2029, 'community': 1829, 'redemption': 6507, 'second time': 6817, 'here we': 3606, 'to change': 8733, 'phone': 6151, 'delight': 2076, 'contrived': 1886, 'such an': 7417, 'married to': 5009, 'monkey': 5182, 'topic': 8961, 'thumbs': 8642, 'anything that': 621, 'astaire': 808, 'ginger': 3174, 'movies in': 5320, 'freak': 3052, 'foster': 3033, 'say the least': 6739, 'push': 6379, 'ford': 3013, 'gave the': 3134, 'possibly the': 6264, 'saving': 6723, 'then again': 8335, 'needs to be': 5436, 'seen to': 6879, 'ball': 935, 'countless': 1928, 'movies ve': 5327, 'handsome': 3378, 'walked': 9289, 'out that': 5998, 'walked out': 9290, 'find yourself': 2870, 'montana': 5186, 'the finest': 7898, 'in all this': 3866, 'donald': 2280, 'sutherland': 7479, 'weeks': 9501, 'love of': 4878, 'vicious': 9239, 'steals': 7300, 'weight': 9502, 'in long': 3901, 'came across': 1524, 'across as': 108, 'restaurant': 6586, 'if had': 3805, 'this movie if': 8535, 'charge': 1679, 'dawson': 2031, 'people have': 6098, 'it back': 4293, 'but at least': 1411, 'clichéd': 1748, 'seek': 6850, 'would think': 9867, 'definitely not': 2072, 'meant to be': 5070, 'emily': 2416, 'butt': 1490, 'opposed': 5919, 'the the': 8223, 'sex with': 6936, 'too br': 8945, 'opposed to': 5920, 'too br br': 8946, 'in addition to': 3863, 'meaningful': 5066, 'have that': 3478, 'set of': 6921, 'cousin': 1939, 'are about': 653, 'this movie with': 8548, 'all of them': 250, 'norman': 5508, 'installment': 4033, 'jesse': 4479, 'example the': 2574, 'his film': 3664, 'for example the': 2954, 'in one of': 3919, 'contrary': 1884, 'the boys': 7773, 'the movie to': 8050, 'football': 2942, 'causes': 1626, 'spots': 7247, 'who wants': 9655, 'growing up': 3320, 'to be more': 8713, 'draw': 2315, 'rage': 6413, 'that because': 7604, 'the ring': 8146, 'the fight': 7877, 'and give': 414, 'running around': 6679, 'while this': 9626, 'predictable and': 6280, 'wilson': 9704, 'prove': 6356, 'balance': 934, 'house and': 3748, 'give this': 3187, 'and you have': 568, 'bridge': 1357, 'sophisticated': 7189, 'lane': 4629, 'thrown in': 8639, 'listening to': 4789, 'cast members': 1611, 'albert': 223, 'brooks': 1374, 'interview': 4063, 'whereas': 9602, 'mile': 5130, 'being in': 1056, 'in real life': 3929, 'he seems to': 3526, 'tribute': 9008, 'dating': 2023, 'hearing': 3545, 'dollars': 2255, 'tribute to': 9009, 'an early': 336, 'to learn': 8804, 'find that': 2867, 'br oh': 1301, 'are two': 696, 'and then there': 526, 'br br oh': 1246, 'poster': 6266, 'portrait': 6248, 'research': 6575, 'iran': 4087, 'garden': 3129, 'admittedly': 162, 'stopped': 7329, 'typically': 9082, 'walls': 9297, 'initial': 4019, 'absence': 82, 'for movie': 2972, 'with and': 9724, 'characters is': 1674, 'before they': 1039, 'themselves in': 8334, 'and nothing': 469, 'footage of': 2941, 'it is also': 4347, 'sum': 7436, 'canadian': 1566, 'the concept': 7808, 'fetched': 2750, 'far fetched': 2697, 'von': 9279, 'hall': 3366, 'championship': 1639, 'the central': 7784, 'just in': 4531, 'of each': 5638, 'of the more': 5718, 'and you can': 567, 'in the final': 3949, 'ann': 586, 'afford': 174, 'consequences': 1862, 'identify': 3799, 'daughters': 2025, 'blonde': 1147, 'how did': 3753, 'favourite': 2719, 'awful the': 895, 'my favourite': 5375, 'was awful': 9337, 'to the original': 8892, 'found this': 3041, 'saga': 6694, 'angels': 575, 'frankie': 3050, 'of hollywood': 5652, 'photographer': 6152, 'she goes': 6961, 'that scene': 7672, 'scene was': 6763, 'great story': 3299, 'not great': 5531, 'off by': 5772, 'protagonist': 6352, 'bugs': 1389, 'the likes': 7992, 'likes of': 4769, 're looking': 6443, 'only few': 5894, 'who could': 9635, 'the river': 8147, 'the train': 8242, 'the eye': 7865, 'the dialog': 7826, 'dialog is': 2132, 'the likes of': 7993, 're looking for': 6444, 'the film as': 7880, 'gas': 3131, 'directly': 2183, 'cia': 1723, 'unhappy': 9116, 'tragedy': 8987, 'clues': 1763, 'don understand': 2274, 'help the': 3562, 'and that the': 509, 'term': 7560, 'pro': 6318, 'samurai': 6706, 'prevent': 6301, 'sympathy': 7486, 'barry': 944, 'was nothing': 9371, 'by its': 1502, 'the form': 7909, 'as whole': 788, 'scene in which': 6758, 'it was an': 4425, 'the form of': 7910, 'mask': 5016, 'jessica': 4480, 'sinister': 7060, 'there with': 8382, 'her br': 3573, 'but really': 1455, 'her br br': 3574, 'fairy': 2662, 'start with': 7277, 'one it': 5866, 'and sometimes': 500, 've seen it': 9212, 'throughout the movie': 8635, 'strongly': 7376, 'actor who': 130, 'did great': 2141, 'in our': 3924, 'become the': 1021, 'trio': 9018, 'st': 7250, 'work the': 9812, 'toward the': 8974, 'according to the': 100, 'teens': 7540, 'cartoons': 1600, 'though this': 8601, 'onto the': 5907, 'of thing': 5741, 'in the us': 3966, 'racism': 6410, 'kenneth': 4557, 'darkness': 2020, 'irony': 4092, 'bbc': 959, 'the drama': 7837, 'horrendous': 3724, 'asleep': 798, 'thing and': 8434, 'twenty': 9062, 'relies': 6534, 'glenn': 3200, 'for being': 2949, 'of his life': 5650, 'westerns': 9546, 'hardcore': 3399, 'that never': 7662, 'the set': 8176, 'to break': 8724, 'the makers': 8012, 'you enjoy': 9927, 'horrific': 3728, 'day the': 2034, 'and every': 396, 'of world': 5763, 'available on': 877, 'hanks': 3382, 'rooney': 6663, 'tom hanks': 8938, 'collection of': 1773, 'lower': 4896, 'the potential': 8118, 'looking forward': 4841, 'doesn work': 2249, 'be good': 971, 'looking forward to': 4842, 'pass': 6079, 'to pass': 8836, 'oliver': 5797, 'original film': 5949, 'tea': 7524, 'learns': 4672, 'and thus': 538, 'doesn really': 2244, 'seen on': 6874, 'burns': 1400, 'destruction': 2116, 'drops': 2334, 'your heart': 9988, 'you love': 9947, 'and believe': 373, 'at her': 819, 'michelle': 5114, 'trailers': 8990, 'niro': 5474, 'miller': 5133, 'cox': 1944, 'de niro': 2038, 'is fine': 4145, 'like his': 4741, 'highly recommended': 3626, 'romero': 6660, 'together with': 8934, 'the small': 8186, 'work with': 9813, 'to work with': 8925, 'freddy': 3054, 'threat': 8616, 'essential': 2503, 'carpenter': 1591, 'wes': 9543, 'props': 6351, 'escape': 2494, 'but will': 1486, 'although this': 301, 'to set': 8871, 'little more': 4795, 'films br': 2847, 'that could have': 7613, 'films br br': 2848, 'silly and': 7041, 'much less': 5341, 'fbi': 2720, 'tracks': 8982, 'the less': 7986, 'the south': 8194, 'of acting': 5615, 'of place': 5687, 'her she': 3588, 'you see the': 9959, 'out of place': 5994, 'pushing': 6381, 'from one': 3076, 'movie does': 5253, 'lab': 4615, 'off br br': 5771, 'credibility': 1961, 'troops': 9022, 'propaganda': 6348, 'pride': 6305, '16': 14, 'is why': 4265, 'size': 7073, 'to feel': 8765, 'blond': 1146, 'shortly': 6987, 'funeral': 3105, 'ladies': 4622, 'treasure': 8998, 'leslie': 4698, 'begins to': 1051, 'was and': 9334, 'voice of': 9275, 'concept of': 1848, 'workers': 9816, 'originally': 5952, 'ireland': 4088, 'obsession': 5601, 'to the screen': 8895, 'contemporary': 1875, 'thief': 8429, 'back story': 906, 'this film for': 8485, 'star trek': 7266, 'girl is': 3178, 'are quite': 683, 'is simple': 4221, 'to escape': 8759, 'the four': 7912, 'drink': 2324, 'it better': 4300, 'tends': 7557, 'branagh': 1344, 'or in': 5929, 'good story': 3256, 'really can': 6474, 'powell': 6269, 'the devil': 7825, 'or another': 5922, 'to be good': 8710, 'fast forward': 2707, 'the scene where': 8160, 'derek': 2095, 'letting': 4711, 'br even': 1278, 'br br even': 1228, 'even though the': 2532, 'musical score': 5363, 'trilogy': 9017, 'stylish': 7401, 'aunt': 870, 'academy award': 90, 'he the': 3529, 'and the only': 516, 'zombie': 9997, 'experiments': 2609, 'truck': 9025, 'scientific': 6786, 'the zombie': 8306, 'first the': 2892, 'civil war': 1734, 'all the characters': 258, 'league': 4668, 'thirty': 8465, 'two people': 9076, 'how she': 3758, 'falls for': 2673, 'the red': 8139, 'boredom': 1173, 'and try': 542, 'ending was': 2444, 'the ending was': 7853, 'carrey': 1592, 'grinch': 3311, 'alike': 230, 'hearts': 3550, 'brosnan': 1375, 'personalities': 6140, 'performances of': 6128, 'comedy and': 1799, 'hart': 3406, 'virginia': 9265, 'is based on': 4114, 'have much': 3461, 'random': 6419, 'it turns': 4421, 'it for the': 4326, 'it turns out': 4422, 'effectively': 2388, 'and out': 480, 'complete with': 1840, 'beyond the': 1111, 'it one of': 4384, 'security': 6824, 'leaves the': 4681, 'and pretty': 487, 'it were': 4438, 'she didn': 6956, 'documentaries': 2230, 'entertain': 2473, 'philip': 6149, 'here it': 3602, 'just bad': 4521, 'to find the': 8773, 'of the genre': 5713, 'terrifying': 7566, 'is both': 4122, 'alicia': 227, 'victor': 9242, 'mature': 5031, 'afterwards': 192, 'curse': 1994, 'his head': 3670, 'performances in': 6127, 'temple': 7550, 'toys': 8980, 'metal': 5109, 'come across': 1787, 'sally': 6701, 'in there': 3972, 'celluloid': 1628, 'maria': 5002, 'vision of': 9269, 'and people': 483, 'they seem': 8420, 'need to be': 5428, 'it could be': 4312, 'of the year': 5736, 'good film': 3244, 'parody of': 6062, 'and almost': 358, 'wasn the': 9417, 'll have': 4813, 'if you ve': 3831, 'cabin': 1512, 'catches': 1618, 'steve': 7310, 'and because': 371, 'stars in': 7272, 'audience is': 868, 'in two': 3982, 'concerning': 1850, 'might not': 5125, 'excellent and': 2577, 'it can be': 4307, 'nuclear': 5589, 'dave': 2026, 'was the most': 9396, 'wrestling': 9875, 'occur': 5608, 'creation': 1956, 'will say': 9698, 'and now': 470, 'dealing': 2044, 'dealing with': 2045, 'most likely': 5214, 'glover': 3203, 'done it': 2286, 'give this movie': 3188, 'elvis': 2412, 'feel of': 2731, 'nelson': 5442, 'of the films': 5710, 'rachel': 6409, 'in films': 3885, 'who will': 9659, 'life but': 4726, 'guy is': 3341, 'courage': 1934, 'portrait of': 6249, 'mann': 4988, 'in the role': 3960, 'ruth': 6687, 'of whom': 5761, 'brady': 1342, 'voight': 9278, 'midnight': 5120, 'cowboy': 1943, 'the photography': 8104, 'is somewhat': 4227, 'precious': 6278, 'didn think': 2158, 'film can': 2786, 'watching this film': 9446, '90 minutes': 53, 'little to': 4796, 'into the movie': 4070, 'titanic': 8688, 'portraying': 6255, 'ripped': 6629, 'they want': 8425, 'is wrong': 4269, 'arrive': 715, 'swedish': 7480, 'sullivan': 7435, 'colour': 1778, 'which they': 9617, 'can remember': 1553, 'nowadays': 5587, 'are you': 700, 'to prove': 8845, 'dragon': 2309, 'with lot': 9737, 'my friend': 5377, 'forget the': 3018, 'with lot of': 9738, 'to seeing': 8869, 'what really': 9566, 'hanging': 3380, 'flashback': 2904, 'shaw': 6950, 'provoking': 6363, 'statement': 7289, 'gentle': 3145, 'thought provoking': 8606, 'dialog and': 2131, 'to mention the': 8824, 'occasional': 5606, 'one person': 5879, 'aforementioned': 175, 'star of': 7265, 'possessed': 6259, 'the typical': 8249, 'appearing': 643, 'mob': 5167, 'shark': 6948, 'roman': 6656, 'virgin': 9264, 'this might': 8523, 'especially if': 2498, 'the time of': 8233, 'young girl': 9981, 'would give': 9852, 'talked': 7510, 'rural': 6682, 'unbearable': 9091, 'shallow': 6943, 'won the': 9786, 'she looks': 6966, 'and gets': 413, 'that he has': 7632, 'to even': 8760, 'sing': 7055, 'the cops': 7809, 'intellectual': 4042, 'etc etc': 2510, 'and they are': 531, 'robbery': 6638, 'shy': 7026, 'she and': 6952, 'artificial': 719, 'but at the': 1412, 'ought': 5970, 'ought to': 5971, 'at it': 823, 'liners': 4777, 'one liners': 5867, 'after his': 183, 'stephen king': 7306, 'would expect': 9850, 'that goes': 7624, '30 minutes': 41, 'minutes the': 5152, 'jeffrey': 4474, 'chose to': 1714, 'the effect': 7844, 'in years': 3992, 've seen in': 9211, 'the obvious': 8069, 'timothy': 8684, 'appearances': 640, 'movie don': 5255, 'toilet': 8935, 'mummy': 5351, 'who wants to': 9656, 'of self': 5692, 'have not seen': 3467, 'idiotic': 3802, 'br unfortunately': 1328, 'br br unfortunately': 1259, 'stayed': 7295, 'there is one': 8365, 'is especially': 4137, 'overwhelming': 6033, 'semi': 6887, 'rob': 6636, 'pet': 6144, 'blunt': 1154, 'heston': 3612, 'one time': 5885, 'sarah': 6711, 'enemies': 2448, 'good time': 3260, 'was surprised': 9390, 'the mark': 8017, 'karloff': 4546, 'indians': 4008, 'to say about': 8858, 'say about this': 6732, 'maggie': 4931, 'for two': 3000, 'the heart of': 7939, 'what it is': 9560, 'all we': 273, 'versions': 9219, 'sense of humor': 6893, 'grey': 3308, 'unrealistic': 9136, 'show up': 7012, 'steals the': 7301, 'dropped': 2333, 'pig': 6171, 'wants to be': 9313, 'it out of': 4388, 'snow': 7103, 'have taken': 3477, 'the time it': 8232, 'and quite': 489, 'tooth': 8957, 'refreshing': 6512, 'akshay': 218, 'is where': 4264, 'belongs': 1075, 'highest': 3620, 'musicals': 5364, 'musical numbers': 5362, 'the highest': 7945, 'the sea': 8169, 'goldberg': 3230, 'out of my': 5993, 'cinderella': 1724, '1950': 19, 'the mood': 8032, 'comes across as': 1804, 'guts': 3337, 'fest': 2748, 'hour of': 3744, 'the gun': 7931, 'bettie': 1105, 'sex and': 6934, 'like this film': 4754, 'the high': 7944, 'shower': 7015, 'the plot was': 8113, 'and pointless': 486, 'an actress': 325, 'kind of movie': 4580, 'is the kind': 4242, 'more and': 5195, 'more and more': 5196, 'beast': 996, 'outside the': 6012, 'the beast': 7751, 'movie then': 5296, 'decision': 2066, 'to everyone': 8761, 'the incredible': 7961, 'ethan': 2511, 'they are not': 8396, 'the edge of': 7842, 'from my': 3075, 'dig': 2169, 'the actress': 7728, 'khan': 4561, 'pie': 6166, 'toy': 8979, 'the crew': 7817, 'for long': 2965, 'he been': 3494, 'for long time': 2966, 'bakshi': 933, 'pack': 6040, 'he not': 3521, 'isn it': 4274, 'fashioned': 2705, 'members of the': 5087, 'that at': 7602, 'appeared in': 642, 'like one': 4747, 'it was great': 4427, 'with more': 9740, 'inspiring': 4032, 'catherine': 1620, 'aware of': 884, 'prepared': 6286, 'least it': 4674, 'away the': 889, 'basis': 953, 'and perhaps': 484, 'nudity and': 5592, 'neo': 5443, 'jewish': 4483, 'invisible': 4080, 'pool': 6241, 'it won': 4443, 'old fashioned': 5794, 'video game': 9246, 'ideal': 3797, 'would be the': 9848, 'to which': 8922, 'possibility': 6260, 'to pull': 8846, 'stanwyck': 7262, 'and you ll': 569, 'burned': 1398, 'antwone': 601, 'have seen in': 3472, 'women are': 9782, 'blind': 1143, 'welles': 9525, 'into her': 4066, 'for the role': 2989, 'the so': 8187, 'folk': 2927, 'that about': 7592, 'up br': 9147, 'up br br': 9148, 'think is': 8450, 'sits': 7068, 'the real world': 8135, 'than he': 7576, 'movie making': 5284, 'we never': 9483, 'remember that': 6543, 'homeless': 3710, 'the gang': 7919, 'bird': 1123, 'is must see': 4185, 'narrator': 5403, 'and actually': 353, 'britain': 1368, 'dolls': 2256, 'bathroom': 955, 'dixon': 2210, 'victoria': 9243, 'scary movie': 6750, 'funny br': 3111, 'the narrative': 8061, 'it bad': 4294, 'funny br br': 3112, 'separate': 6899, 'channels': 1650, 'the matrix': 8019, 'the various': 8258, 'it simply': 4405, 'scooby': 6789, 'doo': 2289, 'like me': 4745, 'elvira': 2411, 'experiment': 2608, 'is left': 4173, 'the work': 8290, 'characters but': 1670, 'all the more': 259, 'out of his': 5991, 'bridget': 1358, 'destroying': 2115, 'spielberg': 7226, 'lucas': 4899, 'chaos': 1651, 'has become': 3410, 'reduced': 6508, 'it appears': 4290, 'ollie': 5799, 'smoke': 7100, 'has nothing to': 3426, 'uwe': 9190, 'the zombies': 8307, 'helen': 3557, 'stiller': 7320, 'br br br': 1222, 'attacks': 852, 'all his': 242, 'grayson': 3289, 'to think that': 8901, 'everyone in': 2555, 'ha': 3344, 'you re looking': 9955, 'titled': 8691, 'bullets': 1393, 'has got': 3414, 'lincoln': 4772, 'boll': 1162, 'boy who': 1195, 'bourne': 1189, 'pulling': 6371, 'neil': 5440, 'matthau': 5030, 'to no': 8830, 'blob': 1144, 'europa': 2512, 'rob roy': 6637}

-------------------------

CountVectorizer
/usr/local/lib/python3.7/dist-packages/sklearn/utils/deprecation.py:87: FutureWarning: Function get_feature_names is deprecated; get_feature_names is deprecated in 1.0 and will be removed in 1.2. Please use get_feature_names_out instead.
  warnings.warn(msg, category=FutureWarning)
[[1 0 0 ... 0 0 0]
 [0 1 2 ... 0 0 0]
 [0 0 0 ... 0 0 0]
 ...
 [0 0 0 ... 0 0 0]
 [0 0 0 ... 0 0 0]
 [0 0 0 ... 0 0 0]]

-------------------------

TF-IDF
[6.44924025 5.79159976 3.00777917 ... 5.43131687 5.60527018 6.33923936]
10000

-------------------------

Predictions
[1 1 1 ... 1 0 0]


---- Classification report ----
              precision    recall  f1-score   support

     positif       0.89      0.85      0.87      1280
     negatif       0.85      0.89      0.87      1220

    accuracy                           0.87      2500
   macro avg       0.87      0.87      0.87      2500
weighted avg       0.87      0.87      0.87      2500

Outils de prétraitement: NLTK

On va maintenant chercher à pré-traiter nos données de manière à simplifier la tâche du modèle. Notez toujours que celà ne sera probablement utile que si l'on a trop peu de données à disposition !

Stemming:

Permet de revenir à la racine d'un mot: on peut ainsi grouper différents mots autour de la même racine, ce qui facilite la généralisation. On peut utiliser l'outil SnowballStemmer.

In [21]:
from nltk import SnowballStemmer
stemmer = SnowballStemmer("english")

Exemple d'utilisation:

In [22]:
words = ['singers', 'cat', 'generalization', 'philosophy', 'psychology', 'philosopher']
for word in words:
    print('word : %s ; stemmed : %s' %(word, stemmer.stem(word)))#.decode('utf-8'))))
word : singers ; stemmed : singer
word : cat ; stemmed : cat
word : generalization ; stemmed : general
word : philosophy ; stemmed : philosophi
word : psychology ; stemmed : psycholog
word : philosopher ; stemmed : philosoph

Transformation des données:

In [23]:
def stem(word): 
# To complete
  stemmer = SnowballStemmer("english")
  word_stemmed = stemmer.stem(word)

  result = [word, word_stemmed]
  return result

Test de la fonction stem

In [24]:
# Test it on the dataset
sentence = train_texts_reduced[0] # test on the first sentence of our dataset
print("--- Original sentence ---")
print(sentence)

list_words = sentence.split(" ")

list_word_stemmed = list()
for word in list_words:
  stemmed_word = stem(word)
  list_word_stemmed.append(stemmed_word)

print("\n\n--- Stemmed words ---")
list_word_stemmed
--- Original sentence ---
Story of a man who has unnatural feelings for a pig. Starts out with a opening scene that is a terrific example of absurd comedy. A formal orchestra audience is turned into an insane, violent mob by the crazy chantings of it's singers. Unfortunately it stays absurd the WHOLE time with no general narrative eventually making it just too off putting. Even those from the era should be turned off. The cryptic dialogue would make Shakespeare seem easy to a third grader. On a technical level it's better than you might think with some good cinematography by future great Vilmos Zsigmond. Future stars Sally Kirkland and Frederic Forrest can be seen briefly.


--- Stemmed words ---
Out[24]:
[['Story', 'stori'],
 ['of', 'of'],
 ['a', 'a'],
 ['man', 'man'],
 ['who', 'who'],
 ['has', 'has'],
 ['unnatural', 'unnatur'],
 ['feelings', 'feel'],
 ['for', 'for'],
 ['a', 'a'],
 ['pig.', 'pig.'],
 ['Starts', 'start'],
 ['out', 'out'],
 ['with', 'with'],
 ['a', 'a'],
 ['opening', 'open'],
 ['scene', 'scene'],
 ['that', 'that'],
 ['is', 'is'],
 ['a', 'a'],
 ['terrific', 'terrif'],
 ['example', 'exampl'],
 ['of', 'of'],
 ['absurd', 'absurd'],
 ['comedy.', 'comedy.'],
 ['A', 'a'],
 ['formal', 'formal'],
 ['orchestra', 'orchestra'],
 ['audience', 'audienc'],
 ['is', 'is'],
 ['turned', 'turn'],
 ['into', 'into'],
 ['an', 'an'],
 ['insane,', 'insane,'],
 ['violent', 'violent'],
 ['mob', 'mob'],
 ['by', 'by'],
 ['the', 'the'],
 ['crazy', 'crazi'],
 ['chantings', 'chant'],
 ['of', 'of'],
 ["it's", 'it'],
 ['singers.', 'singers.'],
 ['Unfortunately', 'unfortun'],
 ['it', 'it'],
 ['stays', 'stay'],
 ['absurd', 'absurd'],
 ['the', 'the'],
 ['WHOLE', 'whole'],
 ['time', 'time'],
 ['with', 'with'],
 ['no', 'no'],
 ['general', 'general'],
 ['narrative', 'narrat'],
 ['eventually', 'eventu'],
 ['making', 'make'],
 ['it', 'it'],
 ['just', 'just'],
 ['too', 'too'],
 ['off', 'off'],
 ['putting.', 'putting.'],
 ['Even', 'even'],
 ['those', 'those'],
 ['from', 'from'],
 ['the', 'the'],
 ['era', 'era'],
 ['should', 'should'],
 ['be', 'be'],
 ['turned', 'turn'],
 ['off.', 'off.'],
 ['The', 'the'],
 ['cryptic', 'cryptic'],
 ['dialogue', 'dialogu'],
 ['would', 'would'],
 ['make', 'make'],
 ['Shakespeare', 'shakespear'],
 ['seem', 'seem'],
 ['easy', 'easi'],
 ['to', 'to'],
 ['a', 'a'],
 ['third', 'third'],
 ['grader.', 'grader.'],
 ['On', 'on'],
 ['a', 'a'],
 ['technical', 'technic'],
 ['level', 'level'],
 ["it's", 'it'],
 ['better', 'better'],
 ['than', 'than'],
 ['you', 'you'],
 ['might', 'might'],
 ['think', 'think'],
 ['with', 'with'],
 ['some', 'some'],
 ['good', 'good'],
 ['cinematography', 'cinematographi'],
 ['by', 'by'],
 ['future', 'futur'],
 ['great', 'great'],
 ['Vilmos', 'vilmo'],
 ['Zsigmond.', 'zsigmond.'],
 ['Future', 'futur'],
 ['stars', 'star'],
 ['Sally', 'salli'],
 ['Kirkland', 'kirkland'],
 ['and', 'and'],
 ['Frederic', 'freder'],
 ['Forrest', 'forrest'],
 ['can', 'can'],
 ['be', 'be'],
 ['seen', 'seen'],
 ['briefly.', 'briefly.']]

Construction d'une fonction de preprocessing pour stemmatiser notre corpus de texte

In [36]:
def preprocess_stem(text):
    list_words = text.split(" ")
    
    text_ = ' '.join([stemmer.stem(word) for word in list_words])

    return text_

On applique la fonction de preprocessing

In [37]:
text_train_stemmed = list()
for elm in train_texts_splt:
  elm_preprocessed = preprocess_stem(elm)
  text_train_stemmed.append(elm_preprocessed)

print(len(text_train_stemmed))
10000

On appique la pipeline {CountVectorizer, TF-IDF, MultinomialNB}

In [38]:
pipe = Pipeline([('vec_count', CountVectorizer(max_features= 10000, analyzer='word', max_df=0.2, ngram_range=(1,3))), 
                 ('tfidf', TfidfTransformer()),
                 ('clf', MultinomialNB())
                 ])

pipe.fit(text_train_stemmed, train_labels_splt)

print("features names")
feat_names = pipe['vec_count'].get_feature_names()

print("\n-------------------------\n")

print("Vocabulary")
vocab = pipe['vec_count'].vocabulary_
print(vocab)

print("\n-------------------------\n")

print("CountVectorizer")
vec_count = pipe['vec_count'].transform(text_train_stemmed).toarray()
print(vec_count)

print("\n-------------------------\n")

print("TF-IDF")
tf_idf = pipe['tfidf'].idf_
print(tf_idf)
print(len(tf_idf))

print("\n-------------------------\n")

# Make predictions
predictions = pipe.predict(val_texts)

print("Predictions")
print(predictions)

# Show the results in a readable format
print("\n\n---- Classification report ----")

report_classification = classification_report(val_labels, predictions, target_names=["positif", "negatif"], output_dict=True)

print(classification_report(val_labels, predictions, target_names=["positif", "negatif"]))

cm = confusion_matrix(val_labels, predictions)
cm_disp = ConfusionMatrixDisplay(cm, display_labels=["positif", "negatif"])

cm_disp.plot()
plt.show()
features names

-------------------------

Vocabulary
{'saw': 6760, 'becam': 1057, 'ever': 2584, 'walk': 9280, 'middle': 5190, 'noth': 5621, 'wors': 9822, 'comedi': 1867, 'miss': 5221, 'funny': 3132, 'everi': 2589, 'although': 313, 'speak': 7243, 'last': 4704, '25': 41, 'minut': 5212, 'origin': 6006, 'while': 9617, 'enjoy': 2502, 'humor': 3814, 'where': 9575, 'these': 8415, 'skit': 7100, 'needless': 5487, 'vulgar': 9272, 'irrit': 4127, 'advertis': 175, 'robin': 6673, 'william': 9698, 'capit': 1640, 'new': 5509, 'found': 3057, 'fame': 2709, 'televis': 7543, 'series': 6931, 'yet': 9904, 'role': 6679, 'turn': 9061, 'minor': 5211, 'cannot': 1635, 'notic': 5633, 'screen': 6830, 'when saw': 9565, 'saw this': 6763, 'this movie': 8579, 'the first': 7911, 'first movi': 2915, 'movi that': 5352, 'walk out': 9283, 'out of': 6046, 'there is': 8390, 'is noth': 4232, 'wors than': 9823, 'comedi that': 1869, 'that just': 7647, 'be funny': 1018, 'funny and': 3133, 'and this': 580, 'everi time': 2593, 'the last': 7993, 'minut of': 5214, 'the movie': 8062, 'movie there': 5381, 'there was': 8408, 'was noth': 9358, 'about ani': 64, 'ani of': 636, 'what was': 9550, 'was even': 9334, 'even more': 2569, 'was that': 9382, 'that this': 7693, 'movi was': 5358, 'first movie': 2916, 'on his': 5877, 'his new': 3711, 'his role': 3714, 'turn out': 9067, 'out to': 6058, 'be so': 1035, 'that you': 7713, 'on screen': 5887, 'the first movi': 7914, 'there is noth': 8395, 'minut of the': 5215, 'of the movie': 5784, 'ani of the': 637, 'that this movi': 7696, 'this movi was': 8576, 'turn out to': 9068, 'out to be': 6059, 'next': 5513, 'action': 126, 'star': 7295, 'realiti': 6512, 'tv': 9073, 'tape': 7522, 'aw': 921, 'bizarr': 1194, 'reason': 6530, 'myself': 5450, 'blame': 1200, 'whole': 9665, 'hope': 3751, 'something': 7206, 'uniqu': 9130, 'entir': 2524, 'hype': 3824, 'silver': 7061, 'touch': 8994, 'flicks': 2943, 'might': 5192, 'sure': 7461, 'bone': 1231, 'redeem': 6553, 'valu': 9194, 'billi': 1183, 'couldn': 1993, 'lift': 4800, 'write': 9868, 'said': 6731, 'perform': 6166, 'through': 8656, 'doesn': 2293, 'els': 2454, 'here': 3626, 'though': 8632, 'writing': 9874, 'quit': 6457, 'frankly': 3073, 'sucked': 7433, 'let': 4771, 'take': 7495, 'idea': 3828, 'rat': 6479, 'race': 6462, 'enemi': 2495, 'state': 7313, 'midnight': 5191, 'run': 6710, 'simpli': 7067, 'brilliant': 1431, 'two': 9084, 'bridg': 1428, 'chase': 1747, 'sequenc': 6920, 'row': 6704, 'sean': 6846, 'man': 5034, 'hour': 3775, 'strength': 7383, 'weak': 9476, 'cast': 1666, 'director': 2231, 'mention': 5166, 'dure': 2393, 'dumb': 2390, 'struggl': 7394, 'shoulder': 7021, 'weight': 9485, 'care': 1649, 'whether': 9585, 'live': 4866, 'die': 2204, 'mid': 5186, 'fail': 2694, 'provid': 6412, 'audienc': 905, 'lucki': 4958, 'routin': 6703, 'old': 5859, 'isn': 4317, 'anyth': 667, 'root': 6698, 'dream': 2365, 'compar': 1894, 'wooden': 9790, 'van': 9198, 'de': 2092, 'did': 2185, 'howard': 3798, 'fine': 2906, 'tell': 7545, 'pretend': 6346, 'half': 3394, 'kept': 4624, 'expect': 2643, 'quot': 6461, 'performance': 6177, 'dramat': 2360, 'depth': 2142, 'freddi': 3076, 'got': 3298, 'near': 5472, 'camera': 1595, 'dark': 2076, 'harsh': 3432, 'light': 4801, 'day': 2087, 'suck': 7432, 'energi': 2496, 'off': 5832, 'natur': 5465, 'life': 4787, 'five': 2931, 'bit': 1188, 'part': 6113, 'lead': 4731, 'ensembl': 2516, 'shouldn': 7022, 'left': 4754, 'solo': 7170, 'big': 1176, 'task': 7525, 'may': 5098, 'better': 1151, 'luck': 4957, 'dynam': 2399, 'hard': 3427, 'given': 3224, 'jeff': 4534, 'lame': 4695, 'script': 6837, 'someon': 7194, 'should': 7016, 'away': 927, 'befor': 1088, 'hurt': 3821, 'himself': 3679, 'anyon': 663, 'else': 2457, 'finally': 2893, 'reach': 6491, 'complet': 1905, 'after watch': 197, 'mani of': 5047, 'the next': 8080, 'for me': 2990, 'me for': 5115, 'for some': 3001, 'reason and': 6531, 'and onli': 514, 'watch the': 9423, 'the whole': 8309, 'whole thing': 9670, 'hope that': 3754, 'that there': 7687, 'would be': 9840, 'the entir': 7869, 'so much': 7141, 'he might': 3551, 'want to': 9291, 'to make': 8839, 'make sure': 5017, 'up on': 9158, 'br first': 1351, 'first the': 2923, 'the onli': 8090, 'entir film': 2525, 'film was': 2872, 'and even': 426, 'have said': 3500, 'said that': 6733, 'the way': 8299, 'way through': 9451, 'as he': 783, 'he doesn': 3532, 'doesn even': 2294, 'seem to': 6888, 'to know': 8827, 'know what': 4666, 'els to': 2456, 'to do': 8773, 'other than': 6024, 'br can': 1346, 'though the': 8636, 'the state': 8225, 'film you': 2882, 'you can': 9917, 'can think': 1625, 'think of': 8493, 'of and': 5680, 'it and': 4335, 'and who': 610, 'was it': 9345, 'it to': 4476, 'to have': 8810, 'the man': 8026, 'man of': 5038, 'hour of': 3778, 'all of': 259, 'the cast': 7784, 'dure the': 2394, 'the series': 8199, 'play the': 6247, 'good look': 3281, 'veri well': 9219, 'well but': 9494, 'we never': 9471, 'to care': 8755, 'care about': 1650, 'fail to': 2695, 'reason for': 6532, 'the audienc': 7738, 'to even': 8784, 'like him': 4811, 'as there': 819, 'there realli': 8404, 'anyth about': 668, 'about the': 72, 'the charact': 7793, 'charact to': 1727, 'root for': 6699, 'br but': 1344, 'compar to': 1896, 'tell her': 7546, 'her to': 3625, 'pretend to': 6347, 'first half': 2914, 'half of': 3396, 'don think': 2322, 'her charact': 3608, 'can be': 1602, 'onli to': 5966, 'depth of': 2143, 'though not': 8635, 'not near': 5594, 'near as': 5473, 'as well': 828, 'the camera': 7779, 'love her': 4938, 'her in': 3615, 'but in': 1498, 'off the': 5841, 'the screen': 8188, 'life in': 4793, 'in her': 3924, 'five minut': 2932, 'at ani': 862, 'part of': 6117, 'of her': 5704, 'screen time': 6833, 'time br': 8682, 'has the': 3455, 'look to': 4907, 'in an': 3900, 'have been': 3470, 'left to': 4757, 'do this': 2275, 'this one': 8586, 'for him': 2983, 'may not': 5102, 'not have': 5584, 'have had': 3484, 'with some': 9742, 'some more': 7176, 'but it': 1503, 'it hard': 4386, 'hard to': 3428, 'to tell': 8914, 'away from': 929, 'from him': 3095, 'befor he': 1090, 'way out': 9446, 'even for': 2562, 'like this': 4825, 'this br': 8510, 'should be': 7017, 'mani of the': 5048, 'the whole thing': 8313, 'want to make': 9297, 'br br first': 1300, 'the entir film': 7870, 'out of the': 6051, 'of the way': 5798, 'the way through': 8305, 'br br can': 1295, 'can think of': 1626, 'all of the': 260, 'of the film': 5774, 'br br but': 1294, 'compar to the': 1897, 'for the first': 3010, 'the first half': 7913, 'half of the': 3397, 'but in the': 1499, 'time br br': 8683, 'it hard to': 4387, 'this br br': 8511, 'african': 185, 'american': 329, 'classic': 1811, 'comedy': 1872, 'cult': 2047, 'recent': 6541, 'purchas': 6427, 'collect': 1840, 'edit': 2425, 'ray': 6489, 'school': 6814, 'black': 1195, 'comedies': 1871, 'anymore': 662, 'famili': 2710, 'site': 7090, 'extrem': 2672, 'help': 3592, 'solv': 7171, 'am': 321, 'right': 6655, 'now': 5638, 'stay': 7319, 'connect': 1929, 'world': 9815, 'thank': 7584, 'imdb': 3878, 'recommend': 6543, 'friends': 3088, 'word': 9794, 'check': 1751, 'yourself': 9993, 'ten': 7553, 'line': 4840, 'lot': 4921, 'comment': 1879, 'point': 6269, 'across': 111, 'not onli': 5597, 'is this': 4291, 'this great': 8536, 'african american': 186, 'but one': 1519, 'of mani': 5725, 'you love': 9949, 'love the': 4944, 'the old': 8086, 'movi and': 5299, 'is for': 4184, 'for you': 3029, 'they don': 8436, 'don make': 2318, 'make movi': 5010, 'movi like': 5334, 'like these': 4823, 'so this': 7151, 'this site': 8603, 'is an': 4140, 'an extrem': 362, 'right now': 6658, 'me to': 5124, 'to stay': 8908, 'connect to': 1930, 'thank you': 7586, 'recommend this': 6546, 'to all': 8724, 'for it': 2986, 'out for': 6040, 'for yourself': 3031, 'line is': 4843, 'is lot': 4215, 'comment on': 1880, 'on one': 5886, 'but if': 1496, 'if it': 3840, 'it get': 4379, 'get the': 3195, 'the point': 8131, 'outsid': 6064, 'room': 6697, 'real': 6502, 'costum': 1980, 'string': 7388, 'porn': 6295, 'worth': 9831, 'between': 1166, 'sex': 6952, 'scenes': 6811, 'cinema': 1791, 'is realli': 4258, 'not in': 5586, 'you have': 9936, 'have to': 3511, 'to see': 8888, 'see this': 6875, 'movie it': 5375, 'it the': 4471, 'know that': 4663, 'that is': 7638, 'is worth': 4313, 'worth watch': 9835, 'between the': 1167, 'the sex': 8201, 'you have to': 9937, 'have to see': 3515, 'to see this': 8895, 'see this movie': 6878, 'this movie it': 8583, 'theater': 8339, 'came': 1589, 'grew': 3338, 'went': 9507, 'locat': 4886, 'spent': 7257, 'rememb': 6591, 'barbara': 987, 'rock': 6676, 'sound': 7230, 'actual': 149, 'success': 7424, 'fan': 2716, 'sing': 7079, 'until': 9141, 'effort': 2439, 'west': 9523, 'actor': 134, 'serious': 6932, 'romance': 6691, 'version': 9221, 'original': 6009, 'believ': 1112, 'chang': 1706, 'long': 4891, 'dvd': 2397, 'release': 6578, 'among': 332, 'things': 8485, 'recal': 6539, 'shot': 7009, 'reveal': 6637, 'pack': 6090, 'sun': 7448, 'devil': 2174, 'longer': 4895, 'wish': 9711, 'done': 2330, 'job': 4547, 'music': 5421, 'god': 3254, 'put': 6434, 'song': 7216, 'along': 298, 'those': 8625, 'inform': 4052, 'sourc': 7234, 'problem': 6375, 'interview': 4099, 'own': 6085, 'documentary': 2285, 'boat': 1221, 'convers': 1959, 'journey': 4568, 'stephen': 7328, 'singer': 7080, 'close': 1825, 'profession': 6393, 'person': 6183, 'tie': 8675, 'others': 6026, 'john': 4555, 'norman': 5558, 'band': 983, 'essenti': 2549, 'pop': 6291, 'score': 6823, 'someth': 7198, 'pass': 6128, 'friend': 3084, 'member': 5153, 'tension': 7559, 'set': 6938, 'remark': 6590, 'effect': 2431, 'talk': 7515, 'back': 941, 'roll': 6688, 'around': 755, 'decid': 2109, 'use': 9180, 'specif': 7250, 'gain': 3143, 'greater': 3334, 'respect': 6620, 'artist': 766, 'upon': 9168, 'hear': 3575, 'story': 7366, 'pro': 6371, 'gay': 3161, 'wrong': 9878, 'movi in': 5321, 'the theater': 8248, 'when it': 9561, 'it came': 4351, 'came out': 1592, 'grew up': 3339, 'up in': 9155, 'went to': 9510, 'and realli': 531, 'realli enjoy': 6519, 'much time': 5412, 'the time': 8254, 'think that': 8495, 'more of': 5266, 'and to': 587, 'to my': 8852, 'one was': 5948, 'was never': 9355, 'fan of': 2718, 'his last': 3704, 'and an': 387, 'an actor': 341, 'though he': 8633, 'he has': 3538, 'think it': 8490, 'is fine': 4183, 'like it': 4814, 'it better': 4346, 'better than': 1159, 'than the': 7581, 'and never': 502, 'br do': 1348, 'believ that': 1117, 'that they': 7691, 'they made': 8448, 'chang in': 1707, 'and more': 495, 'they had': 8442, 'some of': 7178, 'of his': 5707, 'in there': 4009, 'there br': 8386, 'have some': 3506, 'say that': 6771, 'that the': 7683, 'the music': 8070, 'for my': 2995, 'my own': 5446, 'was in': 9343, 'someth that': 7204, 'that could': 7607, 'was and': 9320, 'and is': 469, 'friend and': 3085, 'long time': 4894, 'the set': 8200, 'set and': 6939, 'and at': 391, 'at one': 873, 'one point': 5942, 'point the': 6279, 'the band': 7748, 'the effect': 7855, 'talk to': 7518, 'to him': 8817, 'like that': 4821, 'back to': 952, 'they were': 8464, 'his friend': 3699, 'and they': 577, 'the end': 7859, 'around and': 756, 'and decid': 410, 'decid to': 2111, 'to use': 8938, 'perform in': 6172, 'role in': 6683, 'in make': 3936, 'for her': 2982, 'her as': 3602, 'as an': 768, 'an artist': 349, 'this story': 8605, 'is made': 4217, 'made of': 4978, 'what she': 9543, 'she is': 6985, 'is is': 4208, 'and am': 386, 'am not': 322, 'not that': 5605, 'wrong with': 9879, 'with that': 9744, 'saw this movi': 6765, 'this movi in': 8571, 'movi in the': 5322, 'in the theater': 4001, 'when it came': 9562, 'it came out': 4352, 'at the time': 880, 'think it is': 8491, 'better than the': 1160, 'br br do': 1297, 'there br br': 8387, 'say that the': 6773, 'at one point': 874, 'back to the': 953, 'in the end': 3979, 'and decid to': 411, 'perform in the': 6173, 'in the movi': 3988, 'the movi and': 8052, 'that there is': 7689, 'boy': 1260, 'oh': 5851, 'interest': 4089, 'creat': 2021, 'mom': 5236, 'cheap': 1749, 'video': 9237, 'total': 8993, 'funni': 3128, 'attempt': 896, 'pathet': 6134, 'mean': 5129, 'hey': 3648, 'low': 4950, 'budget': 1452, 'flick': 2942, 'still': 7337, 'effects': 2438, 'case': 1663, 'such': 7427, 'doom': 2338, 'invis': 4114, 'kids': 4633, 'your': 9984, 'kid': 4628, 'taste': 7527, 'perhap': 6179, 'the most': 8049, 'most interest': 5277, 'thing in': 8478, 'was the': 9383, 'use to': 9188, 'to creat': 8765, 'look like': 4904, 'like they': 4824, 'shot on': 7014, 'and it': 470, 'it look': 4416, 'and not': 504, 'not even': 5574, 'even in': 2568, 'in good': 3923, 'where it': 9577, 'it so': 4463, 'end up': 2486, 'movie br': 5370, 'did not': 2191, 'love this': 4945, 'movie the': 5380, 'if they': 3852, 'low budget': 4951, 'can still': 1622, 'great movi': 3329, 'movi with': 5365, 'bad movi': 969, 'budget and': 1453, 'that make': 7651, 'make for': 5001, 'this case': 8513, 'creat the': 2022, 'have no': 3492, 'they will': 8465, 'of this': 5808, 'the movi was': 8060, 'the movie br': 8064, 'movie br br': 5371, 'love this movie': 4946, 'this movie the': 8584, 'in this case': 4011, 'if you have': 3861, 'all of this': 262, 'cartoon': 1662, 'background': 955, 'rich': 6649, 'color': 1843, 'full': 3119, 'nice': 5516, 'art': 763, 'anim': 641, 'usual': 9191, 'studio': 7400, 'standard': 7291, 'higher': 3657, 'present': 6340, 'however': 3801, 'find': 2895, 'tedious': 7539, 'number': 5653, 'reasons': 6537, 'definit': 2120, 'scott': 6827, 'standards': 7292, 'probabl': 6372, 'suppos': 7458, 'setting': 6947, 'same': 6739, 'sinc': 7072, 'includ': 4031, 'tend': 7555, 'eye': 2674, 'visual': 9263, 'averag': 917, 'viewer': 9245, 'storyline': 7374, 'give': 3211, 'secret': 6854, 'aren': 748, 'alreadi': 303, 'countri': 1996, 'citi': 1799, 'common': 1887, 'theme': 8360, 'films': 2885, 'both': 1246, 'era': 2536, 'rural': 6716, 'reflect': 6561, 'similar': 7062, 'values': 9196, 'there lot': 8400, 'lot of': 4925, 'of good': 5701, 'that can': 7604, 'be said': 1033, 'for this': 3017, 'the background': 7745, 'full of': 3120, 'the anim': 7734, 'anim is': 643, 'up to': 9163, 'the usual': 8284, 'which are': 9601, 'those of': 8628, 'the present': 8142, 'find it': 2898, 'number of': 5654, 'it definit': 4362, 'definit not': 2121, 'although it': 314, 'it probabl': 4446, 'suppos to': 7459, 'of great': 5702, 'it end': 4370, 'up be': 9148, 'are not': 725, 'not the': 5606, 'the same': 8177, 'same as': 6740, 'most peopl': 5284, 'tend to': 7556, 'when they': 9568, 'the visual': 8294, 'the cartoon': 7782, 'that will': 7709, 'will be': 9683, 'by the': 1574, 'the averag': 7741, 'the plot': 8126, 'bad this': 974, 'anim and': 642, 'and live': 485, 'from this': 3111, 'which in': 9605, 'that never': 7661, 'that can be': 7605, 'up to the': 9164, 'of the time': 5796, 'suppos to be': 7460, 'the same as': 8178, 'lot of the': 4928, 'part of the': 6118, 'in the plot': 3993, 'without': 9762, 'doubt': 2343, 'best': 1134, '10': 2, 'year': 9886, 'began': 1097, 'sometim': 7207, 'rape': 6476, 'shock': 7002, 'kinda': 4648, 'sick': 7045, 'today': 8955, 'begin': 1099, 'understood': 9116, 'exciting': 2633, 'disturbing': 2261, 'shown': 7040, 'experi': 2651, 'haunt': 3465, 'rest': 6623, 'll': 4877, 'tortur': 8990, 'worri': 9820, 'bodi': 1224, 'river': 6668, 'histori': 3723, 'smart': 7117, 'especi': 2543, 'jon': 4563, 'voight': 9268, 'burt': 1466, 'magnific': 4988, 'throughout': 8662, 'base': 990, 'dick': 2184, 'novel': 5637, 'must': 5429, 'lover': 4949, 'is without': 4311, 'without doubt': 9765, 'the best': 7757, 'best movi': 1139, 'movi have': 5318, 'have ever': 3477, 'ever seen': 2587, 'seen the': 6899, 'first time': 2924, 'time saw': 8693, 'saw it': 6761, 'was about': 9312, '10 year': 9, 'year old': 9895, 'befor the': 1092, 'scene and': 6786, 'and when': 606, 'was realli': 9372, 'movi is': 5323, 'seen it': 6897, 'it from': 4378, 'from the': 3105, 'the begin': 7754, 'movi realli': 5345, 'realli is': 6523, 'is it': 4209, 'and in': 465, 'in it': 3928, 'it own': 4444, 'but the': 1528, 'best thing': 1145, 'thing about': 8473, 'about it': 70, 'where the': 9579, 'audienc is': 906, 'is shown': 4263, 'the rest': 8161, 'rest of': 6624, 'of their': 5803, 'it ll': 4415, 'the bodi': 7768, 'be found': 1017, 'found in': 3058, 'in that': 3972, 'and there': 574, 'they can': 8427, 'can do': 1604, 'it it': 4409, 'they have': 8444, 'to live': 8834, 'live with': 4874, 'with this': 9751, 'end is': 2479, 'is one': 4241, 'end in': 2478, 'in movi': 3941, 'and veri': 596, 'br and': 1273, 'the act': 7718, 'act is': 118, 'is also': 4137, 'act in': 117, 'all in': 252, 'in all': 3895, 'base on': 991, 'must see': 5434, 'see for': 6860, 'for all': 2967, 'all the': 266, 'one of the': 5936, 'of the best': 5764, 'the best movi': 7759, 'movi have ever': 5319, 'have ever seen': 3478, 'the first time': 7918, 'the best thing': 7762, 'it is the': 4406, 'for the rest': 3012, 'the rest of': 8162, 'and there is': 576, 'they have to': 8445, 'is one of': 4242, 'of the most': 5782, 'br br and': 1287, 'and the act': 559, 'the act is': 7719, 'in this movie': 4014, 'all in all': 253, 'for all the': 2968, 'deal': 2095, 'fear': 2755, 'age': 210, 'encount': 2472, 'face': 2680, 'potenti': 6314, 'format': 3048, 'suggest': 7438, 'health': 3574, 'design': 2153, 'primarili': 6360, 'patient': 6136, 'heart': 3579, 'excel': 2621, 'portray': 6300, 'outstand': 6067, 'command': 1878, 'deal with': 2097, 'with one': 9738, 'among the': 333, 'the age': 7730, 'as one': 802, 'one who': 5949, 'who has': 9638, 'who are': 9629, 'face the': 2684, 'the potenti': 8138, 'are in': 713, 'suggest that': 7439, 'movi to': 5355, 'to ani': 8727, 'to speak': 8905, 'the famili': 7883, 'into the': 4104, 'the veri': 8286, 'heart of': 3581, 'cast is': 1669, 'is excel': 4177, 'excel and': 2622, 'with veri': 9756, 'plot line': 6260, 'are in the': 714, 'recommend this movi': 6548, 'this movi to': 8575, 'the movi is': 8057, 'admit': 165, 'over': 6069, 'top': 8984, 'tone': 8968, 'down': 2346, 'mayb': 5104, 'less': 4767, 'cheesy': 1758, 'overal': 6079, 'movies': 5385, 'absolut': 87, 'wonderful': 9787, 'incred': 4035, 'beautiful': 1055, 'import': 3884, 'nude': 5648, 'factor': 2692, 'sever': 6950, 'view': 9241, 'evil': 2610, 'toward': 8998, 'richard': 6650, 'doe': 2286, 'sheriff': 6995, 'drunk': 2380, 'boyfriend': 1263, 'yes': 9900, 'favorites': 2750, 'first off': 2919, 'll be': 4878, 'be the': 1040, 'to admit': 8723, 'admit that': 166, 'is quit': 4255, 'over the': 6075, 'the top': 8263, 'made this': 4980, 'much less': 5405, 'it one': 4437, 'the better': 7763, 'is absolut': 4133, 'not to': 5608, 'to mention': 8848, 'though this': 8638, 'miss the': 5223, 'there are': 8379, 'other movi': 6021, 'movi at': 5303, 'to view': 8940, 'her but': 3607, 'but here': 1493, 'she get': 6981, 'toward the': 8999, 'as she': 810, 'walk away': 9282, 'great job': 3328, 'job as': 4549, 'and as': 389, 'as the': 816, 'yes it': 9901, 'movie but': 5372, 'of all': 5675, 'of them': 5804, 'seen this': 6900, 'is definit': 4170, 'definit one': 2122, 'of my': 5737, 'over the top': 6076, 'it one of': 4438, 'of the better': 5765, 'not to mention': 5610, 'this movi is': 8572, 'toward the end': 9000, 'away from the': 930, 'all of them': 261, 'one of my': 5935, 'thug': 8671, 'kill': 4634, 'anoth': 652, 'discov': 2247, 'doctor': 2283, 'realiz': 6514, 'dead': 2094, 'suffer': 7436, 'nasti': 5461, 'against': 208, 'contact': 1942, 'treat': 9024, 'otherwis': 6027, 'disast': 2243, 'taught': 7528, 'seri': 6924, 'fact': 2686, 'littl': 4857, 'biggest': 1181, 'ill': 3872, '1950': 21, 'wouldn': 9859, 'allow': 287, 'high': 3653, 'explos': 2665, 'blood': 1212, 'enorm': 2510, 'al': 228, 'gross': 3347, 'certain': 1695, 'understand': 9110, 'whi': 9589, 'didn': 2195, 'far': 2726, 'govern': 3306, 'involv': 4116, 'control': 1955, 'handl': 3409, 'local': 4885, 'level': 4778, 'everyon': 2596, 'prepar': 6337, 'acting': 123, 'widmark': 9677, 'paul': 6138, 'dougla': 2345, 'public': 6419, 'polic': 6285, 'chief': 1764, 'known': 4673, 'menac': 5164, 'jack': 4517, 'walter': 9286, 'relat': 6570, 'unknown': 9134, 'zero': 9995, 'scari': 6783, 'physic': 6200, 'heavi': 3584, 'typic': 9093, 'earli': 2406, 'sort': 7227, 'overall': 6080, 'despit': 2157, 'detail': 2164, 'wrap': 9864, 'everyth': 2601, 'tens': 7558, 'seeing': 6882, 'when the': 9567, 'about to': 80, 'the doctor': 7845, 'realiz that': 6515, 'although the': 315, 'was shot': 9374, 'he was': 3568, 'was also': 9317, 'suffer from': 7437, 'version of': 9223, 'so it': 7138, 'time to': 8698, 'to find': 8794, 'those who': 8631, 'the dead': 7831, 'man and': 5035, 'seri of': 6927, 'on it': 5882, 'it for': 4376, 'film realli': 2858, 'not do': 5572, 'good job': 3280, 'job of': 4551, 'the fact': 7881, 'that it': 7642, 'what the': 9544, 'the peopl': 8112, 'the biggest': 7766, 'problem is': 6376, 'is that': 4278, 'is so': 4265, 'that in': 7636, 'they realli': 8454, 'wouldn have': 9861, 'allow to': 289, 'to show': 8900, 'show it': 7028, 'is high': 4200, 'they got': 8441, 'but also': 1473, 'along with': 301, 'like you': 4834, 'you get': 9931, 'understand whi': 9115, 'whi they': 9598, 'they didn': 8434, 'sure that': 7464, 'would have': 9845, 'involv in': 4117, 'film it': 2839, 'and everyon': 429, 'no one': 5535, 'will to': 9696, 'to believ': 8747, 'believ the': 1119, 'as for': 779, 'the acting': 7721, 'acting the': 125, 'film had': 2826, 'had some': 3389, 'and paul': 520, 'the public': 8150, 'good actor': 3265, 'actor but': 137, 'back in': 945, 'in his': 3926, 'his first': 3698, 'first film': 2913, 'film is': 2835, 'by his': 1569, 'well as': 9490, 'was great': 9341, 'his own': 3712, 'sort of': 7228, 'of evil': 5698, 'br overall': 1380, 'not get': 5579, 'right and': 6656, 'littl too': 4864, 'is veri': 4301, 'and has': 452, 'acting and': 124, 'is well': 4305, 'well worth': 9505, 'worth seeing': 9833, 'as the film': 817, 'version of the': 9224, 'in the movie': 3989, 'the movie the': 8067, 'problem is that': 6377, 'is that this': 4281, 'along with the': 302, 'in the film': 3981, 'the film it': 7903, 'as for the': 780, 'film is the': 2838, 'as well as': 829, 'well as the': 9491, 'br br overall': 1323, 'the film is': 7902, 'whoever': 9664, 'wrote': 9880, 'screenplay': 6834, 'obvious': 5666, 'book': 1232, 'ball': 980, 'mistak': 5225, 'rang': 6473, 'later': 4708, 'list': 4851, 'themselves': 8363, 'luci': 4956, 'jr': 4570, 'filmmak': 2884, 'tri': 9030, 'wrote the': 9881, 'the screenplay': 8189, 'never seen': 5507, 'so mani': 7140, 'from her': 3094, 'to her': 8815, 'list of': 4852, 'it would': 4509, 'would go': 9844, 'go on': 3244, 'on for': 5874, 'of those': 5812, 'peopl who': 6157, 'cannot be': 1636, 'at how': 868, 'how mani': 3791, 'made in': 4974, 'film the': 2866, 'the filmmak': 7908, 'movi seem': 5346, 'to me': 8846, 'for this movi': 3019, 'one of those': 5938, 'in this film': 4012, 'this film the': 8530, 'but the movi': 1530, 'moment': 5237, 'possibl': 6307, 'decis': 2112, 'danger': 2072, 'crimin': 2037, 'manag': 5043, 'huge': 3807, 'amount': 335, 'money': 5243, 'bank': 985, 'main': 4990, 'land': 4696, 'shoot': 7004, 'grab': 3307, 'fli': 2941, 'chick': 1763, 'behavior': 1106, 'landscap': 4697, 'scenery': 6810, 'due': 2384, 'characters': 1733, 'don know': 2314, 'know who': 4670, 'the script': 8190, 'they could': 8429, 'could make': 1989, 'make up': 5025, 'whi do': 9591, 'do they': 2274, 'they make': 8449, 'make the': 5018, 'which is': 9606, 'do the': 2273, 'manag to': 5044, 'to get': 8800, 'amount of': 336, 'of money': 5729, 'and get': 443, 'get away': 3178, 'away with': 932, 'with it': 9729, 'the main': 8019, 'the money': 8043, 'money and': 5244, 'are more': 722, 'case of': 1664, 'give this': 3218, 'point for': 6270, 'action and': 127, 'and great': 449, 'due to': 2385, 'the characters': 7800, 'just can': 4585, 'can give': 1609, 'for this movie': 3020, 'this movie but': 8582, 'from the first': 3107, 'up in the': 9156, 'which is the': 9607, 'is the most': 4285, 'get away with': 3179, 'and there are': 575, 'give this movi': 3220, 'due to the': 2386, 'of the characters': 5769, 'sad': 6725, 'captiv': 1642, 'repres': 6611, 'german': 3174, 'product': 6389, 'quality': 6448, 'hold': 3732, 'attent': 900, 'itself': 4515, 'center': 1690, 'exagger': 2615, 'nuanc': 5646, 'performances': 6178, 'eddi': 2421, 'rescu': 6614, 'poor': 6290, 'howev': 3799, 'told': 8963, 'follow': 2956, 'conclus': 1919, 'deserv': 2150, 'cinemat': 1792, 'enough': 2511, 'lazi': 4729, 'afternoon': 198, 'rememb the': 6593, 'the book': 7769, 'but do': 1484, 'that was': 7700, 'the stori': 8226, 'stori of': 7358, 'product of': 6390, 'it doe': 4365, 'doe not': 2290, 'itself is': 4516, 'is good': 4193, 'good it': 3279, 'is just': 4210, 'just bad': 4582, 'the center': 7789, 'are the': 737, 'charact that': 1726, 'that are': 7595, 'in their': 4006, 'even the': 2571, 'the well': 8307, 'well known': 9498, 'and like': 483, 'get better': 3181, 'better and': 1152, 'and better': 399, 'so in': 7137, 'must say': 5433, 'film doesn': 2819, 'may be': 5099, 'enough for': 2512, 'the stori of': 8230, 'it doe not': 4366, 'it is just': 4401, 'that the film': 7684, 'say that this': 6774, 'that this film': 7694, 'distinct': 2257, 'catch': 1677, '2004': 35, 'worst': 9825, 'incoher': 4033, 'cgi': 1697, 'driven': 2374, 'empti': 2471, 'embarrass': 2462, 'project': 6398, 'cost': 1978, 'really': 6529, 'front': 3113, 'neil': 5493, 'young': 9977, 'contribut': 1952, 'share': 6969, 'whose': 9673, 'record': 6550, 'mirror': 5218, 'pen': 6145, 'songs': 7219, 'sadly': 6728, 'precious': 6326, 'few': 2784, 'ones': 5953, 'built': 1459, 'truli': 9054, 'polit': 6288, 'merit': 5171, 'forgotten': 3045, 'buy': 1559, 'feel': 2761, 'compel': 1899, 'account': 107, 'had the': 3390, 'two of': 9087, 'worst film': 9826, 'and then': 571, 'then the': 8368, 'known as': 4674, 'the other': 8103, 'but they': 1536, 'they both': 8426, 'realli bad': 6516, 'bad br': 960, 'the world': 8325, 'but he': 1490, 'some realli': 7184, 'are no': 724, 'which they': 9612, 'they are': 8424, 'is truli': 4299, 'buy the': 1561, 'you feel': 9929, 'contribut to': 1953, 'and then the': 572, 'and the other': 565, 'bad br br': 961, 'there are no': 8383, 'and the film': 563, 'bought': 1255, 'store': 7351, 'regret': 6567, 'start': 7304, 'cheesi': 1757, 'horror': 3763, 'horribl': 3758, 'entertainment': 2523, 'entertain': 2519, 'fun': 3122, 'mst3k': 5395, 'style': 7408, 'manner': 5057, 'boring': 1242, 'expected': 2649, 'laughabl': 4718, 'honestly': 3744, 'plus': 6267, 'side': 7047, 'editing': 2426, 'moments': 5242, 'mother': 5285, 'strang': 7378, 'fit': 2928, 'dinner': 2220, 'consequ': 1932, 'charg': 1739, 'eat': 2418, 'food': 2960, 'straight': 7376, 'dialogu': 2179, 'cut': 2056, 'pure': 6428, 'funniest': 3131, 'appar': 682, 'unless': 9135, 'lit': 4855, 'frustrat': 3116, 'anything': 674, 'contain': 1943, 'wow': 9863, 'surpris': 7468, 'coming': 1877, 'sense': 6912, 'won': 9779, 'ruin': 6707, 'twenti': 9078, 'various': 9201, 'wasn': 9402, 'possible': 6310, 'commentari': 1883, 'track': 9006, 'crap': 2015, 'movi for': 5314, 'huge fan': 3808, 'half hour': 3395, 'becaus it': 1059, 'was so': 9375, 'so bad': 7126, 'bad it': 968, 'it could': 4359, 'could be': 1982, 'be made': 1027, 'fun of': 3124, 'then it': 8366, 'it got': 4383, 'is not': 4228, 'this was': 8614, 'bad and': 958, 'was to': 9389, 'br this': 1397, 'way too': 9453, 'too mani': 8979, 'is go': 4190, 'are mani': 721, 'such as': 7429, 'the mother': 8051, 'then that': 8367, 'that have': 7625, 'absolut no': 89, 'along the': 299, 'the line': 8007, 'line of': 4844, 'was fun': 9337, 'fun to': 3125, 'to watch': 8942, 'and other': 516, 'the scene': 8181, 'in and': 3901, 'speak of': 7244, 'the funniest': 7929, 'it isn': 4408, 'problem with': 6378, 'so poor': 7145, 'can see': 1621, 'see what': 6879, 'what go': 9531, 'half the': 3398, 'is more': 4218, 'in one': 3952, 'can even': 1606, 'what you': 9553, 'see that': 6871, 'that so': 7678, 'it come': 4357, 'come to': 1862, 'the worst': 8327, 'me and': 5109, 'and that': 555, 'that good': 7620, 'can say': 1620, 'the big': 7764, 'see it': 6867, 'the reason': 8157, 'is becaus': 4153, 'it made': 4418, 'you but': 9916, 'but will': 1552, 'tell you': 7552, 'you that': 9963, 'that my': 7660, 'my friend': 5439, 'anyth that': 672, 'that would': 7710, 'that at': 7597, 'at all': 856, 'all and': 243, 'and all': 380, 'all we': 284, 'it wasn': 4498, 'br all': 1267, 'all this': 276, 'is actual': 4134, 'when you': 9573, 'you watch': 9969, 'watch it': 9418, 'it with': 4505, 'make fun': 5002, 'of it': 5716, 'horror movies': 3768, 'movies but': 5389, 'but this': 1539, 'was too': 9390, 'too much': 8980, 'this movi for': 8568, 'huge fan of': 3809, 'becaus it was': 1061, 'it was so': 4495, 'was so bad': 9376, 'so bad it': 7127, 'it could be': 4360, 'br the act': 1385, 'not to be': 5609, 'this is the': 8549, 'br br this': 1332, 'br this movi': 1400, 'is go on': 4191, 'there are mani': 8382, 'such as the': 7430, 'the line of': 8008, 'fun to watch': 3126, 'of the funniest': 5776, 'of the movi': 5783, 'movi is the': 5329, 'problem with the': 6379, 'movi is that': 5328, 'is that it': 4279, 'you can see': 9920, 'what go on': 9532, 'in one of': 3953, 'when it come': 9563, 'it come to': 4358, 'of the worst': 5801, 'the movi to': 8059, 'that would have': 7712, 'at all and': 857, 'say that it': 6772, 'br br all': 1282, 'br all in': 1268, 'in all this': 3898, 'make fun of': 5003, 'but this was': 1544, 'admir': 164, 'todd': 8956, 'drive': 2372, 'making': 5031, '2000': 32, 'unfortunately': 9124, 'zombi': 9996, 'quick': 6453, 'rate': 6480, 'group': 3349, 'obnoxi': 5660, 'student': 7398, 'event': 2579, 'attack': 895, 'escap': 2540, 'armi': 752, 'direct': 2223, 'dread': 2364, 'brian': 1426, 'reli': 6581, 'heavili': 3585, 'liber': 4783, 'bomb': 1229, 'deliv': 2127, 'amateurish': 324, 'featur': 2757, 'mind': 5204, 'numb': 5652, 'talent': 7513, 'giant': 3202, 'cardboard': 1648, 'space': 7238, 'gore': 3294, 'hand': 3407, 'pull': 6420, 'victim': 9232, 'etern': 2554, 'lives': 4875, 'unconvinc': 9105, 'finish': 2909, 'travel': 9021, 'twist': 9081, 'forc': 3032, 're': 6490, 'onc': 5908, 'mr': 5392, 'again': 200, 'you got': 9935, 'got to': 3301, 'for his': 2984, 'he made': 3548, 'anyth to': 673, 'to go': 8806, 'look at': 4898, 'at their': 883, 'group of': 3350, 'littl more': 4861, 'the live': 8011, 'who have': 9639, 'escap from': 2541, 'use of': 9185, 'yet anoth': 9905, 'perform from': 6171, 'from his': 3096, 'and what': 605, 'like the': 4822, 'the front': 7926, 'front of': 3114, 'and his': 459, 'hand of': 3408, 'seem like': 6885, 'like an': 4808, 'for their': 3015, 'their lives': 8345, 'viewer to': 9246, 'begin of': 1100, 'it again': 4328, 'the begin of': 7755, 'begin of the': 1101, 'have to watch': 3516, 'to watch it': 8944, 'watch it again': 9419, 'flight': 2944, 'presum': 6345, 'pressur': 6344, 'mild': 5199, 'behind': 1107, 'woman': 9771, 'dies': 2209, 'fiancé': 2788, 'fall': 2702, 'together': 8961, 'eventu': 2583, 'ok': 5856, 'laugh': 4713, 'predict': 6328, 'destin': 2160, 'honest': 3743, 'stare': 7302, 'seat': 6850, 'call': 1586, 'watch this': 9428, 'this on': 8585, 'on an': 5865, 'an hour': 363, 'becaus of': 1062, 'found it': 3059, 'the actual': 7728, 'behind the': 1108, 'fall in': 2704, 'in love': 3934, 'love with': 4948, 'don get': 2311, 'do it': 2268, 'as good': 781, 'there were': 8411, 'laugh and': 4714, 'the actor': 7723, 'work well': 9811, 'plot was': 6266, 'about as': 65, 'was on': 9359, 'think the': 8498, 'but not': 1515, 'could have': 1986, 'lot better': 4923, 'better the': 1162, 'but to': 1545, 'be honest': 1021, 'veri funny': 9209, 'funny br': 3134, 'br in': 1360, 'was more': 9352, 'more interest': 5264, 'in front': 3920, 'of me': 5726, 'me but': 5113, 'becaus of the': 1064, 'the film was': 7907, 'fall in love': 2705, 'in love with': 3935, 'the plot was': 8130, 'of the stori': 5793, 'could have been': 1987, 'to be honest': 8737, 'funny br br': 3135, 'br br in': 1308, 'in front of': 3921, 'but it was': 1508, 'romanc': 6690, 'stereotyp': 7330, 'impact': 3882, 'player': 6249, 'mgm': 5181, 'robert': 6672, 'wife': 9679, 'grate': 3317, 'awful': 936, 'not funny': 5578, 'funny it': 3136, 'it make': 4420, 'make no': 5011, 'film so': 2863, 'back then': 951, 'it has': 4388, 'has no': 3449, 'more than': 5270, 'than that': 7580, 'to say': 8883, 'this would': 8621, 'the wife': 8314, 'with no': 9737, 'time for': 8685, 'anyth but': 669, 'br we': 1404, 'we can': 9459, 'this littl': 8557, 'the product': 8148, 'product valu': 6391, 'yet it': 9906, 'no real': 5538, 'br it': 1362, 'who want': 9657, 'the cast is': 7785, 'is that the': 4280, 'br br we': 1336, 'br br it': 1309, 'amaz': 325, 'anybodi': 661, 'rais': 6469, 'kind': 4645, 'crappi': 2016, 'amazing': 326, 'onc in': 5910, 'how bad': 3785, 'bad film': 963, 'film can': 2816, 'be and': 1009, 'and how': 462, 'money to': 5246, 'make this': 5022, 'this kind': 8555, 'kind of': 4646, 'of crap': 5694, 'film from': 2825, 'stori to': 7361, 'in the world': 4005, 'to make this': 8843, 'this kind of': 8556, 'ago': 214, 'younger': 9983, 'title': 8718, 'candi': 1633, 'credit': 2028, 'entri': 2527, 'name': 5456, 'crime': 2036, 'bell': 1123, 'read': 6495, 'brought': 1445, 'pretti': 6349, 'rather': 6484, 'hitchcock': 3728, 'formula': 3050, 'mistaken': 5227, 'ident': 3835, 'larg': 4701, 'amongst': 334, 'coupl': 1998, 'dog': 2302, 'europ': 2555, 'return': 6633, 'reward': 6647, 'mix': 5228, 'mad': 4969, 'feature': 2759, 'engag': 2497, 'when was': 9570, 'and could': 408, 'the title': 8261, 'one day': 5922, 'on imdb': 5879, 'and after': 378, 'read the': 6496, 'pretti well': 6353, 'despit the': 2159, 'fact that': 2688, 'by ani': 1565, 'enjoy and': 2503, 'movi has': 5317, 'cast of': 1671, 'an american': 348, 'from there': 3110, 'there the': 8406, 'they go': 8440, 'the run': 8174, 'after the': 194, 'the polic': 8133, 'think they': 8499, 'world and': 9816, 'direct by': 2225, 'and he': 454, 'get some': 3194, 'star in': 7298, 'is most': 4219, 'to it': 8822, 'cast and': 1667, 'that isn': 7641, 'the fact that': 7882, 'fact that it': 2689, 'that it is': 7644, 'it is not': 4402, 'br the movi': 1387, 'the movi has': 8055, 'and the end': 561, 'releas': 6576, 'hit': 3726, 'soon': 7220, 'ridicul': 6653, 'loser': 4916, 'tag': 7494, 'lin': 4837, 'sweet': 7484, 'sacrific': 6724, 'hero': 3641, 'ladi': 4691, 'gandhi': 3146, 'each': 2400, 'influenc': 4051, 'broken': 1440, 'lik': 4803, 'attitud': 903, 'thought': 8639, 'henc': 3598, 'move': 5293, 'childish': 1767, 'stupid': 7405, 'stylish': 7411, 'cool': 1965, 'either': 2443, 'hair': 3393, 'cant': 1637, 'horrend': 3757, 'cinematographi': 1793, 'true': 9050, 'save': 6756, 'grace': 3308, 'lyric': 4966, 'pictur': 6204, 'tast': 7526, 'anyway': 675, 'except': 2625, 'ordinari': 6004, 'was releas': 9373, 'movi the': 5354, 'the hero': 7958, 'his love': 3706, 'love for': 4937, 'the lead': 7997, 'even though': 2572, 'the two': 8273, 'each other': 2402, 'the mean': 8033, 'mean of': 5131, 'found this': 3064, 'movi it': 5331, 'is when': 4307, 'move on': 5295, 'on with': 5905, 'with their': 9748, 'when he': 9558, 'to look': 8835, 'help the': 3596, 'lead role': 4734, 'is bad': 4147, 'done in': 2333, 'in most': 3940, 'most part': 5283, 'the good': 7939, 'the excel': 7875, 'cinematographi and': 1794, 'are actual': 700, 'the true': 8270, 'also the': 309, 'are veri': 743, 'the director': 7842, 'has to': 3456, 'the song': 8212, 'br anyway': 1275, 'except for': 2626, 'it was the': 4496, 'even though the': 2574, 'they could have': 8430, 'has to be': 3457, 'br br anyway': 1289, 'except for the': 2627, 'charm': 1744, 'pre': 6325, 'different': 2213, 'short': 7006, 'traci': 9005, 'beauti': 1052, 'intrigu': 4107, 'press': 6343, 'girl': 3204, '20': 29, 'small': 7115, 'child': 1765, 'days': 2091, 'soft': 7165, 'focus': 2951, 'beauty': 1056, 'cynic': 2060, 'bill': 1182, 'slowli': 7114, 'transform': 9015, 'knew': 4653, 'roles': 6687, 'support': 7455, 'arthur': 764, 'leav': 4748, 'impress': 3888, 'particular': 6123, 'fascin': 2736, 'figur': 2797, 'camp': 1599, 'lone': 4890, 'depress': 2141, 'surviv': 7474, 'typ': 9090, 'wind': 9702, 'tale': 7511, 'but that': 1526, 'movie you': 5384, 'say the': 6775, 'for most': 2993, 'they just': 8446, 'an interest': 368, 'way br': 9439, 'the short': 8203, 'run time': 6715, 'time the': 8695, 'the great': 7942, 'act of': 120, 'the beauti': 7753, 'face and': 2681, 'watch and': 9410, 'and enjoy': 423, 'enjoy this': 2506, 'film br': 2811, 'br you': 1411, 'play by': 6241, '20 year': 31, 'who was': 9659, 'make her': 5005, 'act as': 115, 'that and': 7592, 'much of': 5408, 'in on': 3950, 'mani time': 5052, 'time and': 8680, 'and was': 599, 'by her': 1568, 'man with': 5042, 'thank to': 7585, 'with such': 9743, 'br although': 1270, 'view this': 9244, 'role as': 6681, 'stori is': 7356, 'is littl': 4214, 'but hey': 1494, 'the movies': 8068, 'this stori': 8604, 'is about': 4130, 'about two': 81, 'tri to': 9032, 'to surviv': 8911, 'wind up': 9703, 'be veri': 1045, 'this is veri': 8550, 'way br br': 9440, 'br it was': 1364, 'film br br': 2812, 'br br you': 1343, 'and the fact': 562, 'back in the': 946, 'much of the': 5409, 'br br although': 1284, 'br the stori': 1390, 'the stori is': 8228, 'to be veri': 8743, 'writer': 9871, 'drama': 2358, 'curious': 2052, 'develop': 2169, 'indic': 4042, 'team': 7533, 'emot': 2465, 'pit': 6219, 'opportun': 5977, 'herself': 3646, 'rare': 6478, 'breath': 1423, 'wood': 9789, 'shop': 7005, 'persona': 6186, 'varieti': 9200, 'cours': 2002, 'fate': 2743, 'house': 3784, 'the writer': 8332, 'film for': 2824, 'charact develop': 1717, 'and well': 603, 'help but': 3593, 'to feel': 8788, 'feel that': 2769, 'that he': 7626, 'he must': 3552, 'against the': 209, 'the viewer': 8291, 'has an': 3436, 'opportun to': 5978, 'the wood': 8321, 'of high': 5705, 'and of': 507, 'of cours': 5690, 'to that': 8915, 'that of': 7664, 'sure to': 7466, 'to catch': 8757, 'one at': 5915, 'of this film': 5809, 'this film for': 8524, 'and of cours': 508, 'of the other': 5787, 'retir': 6632, 'michael': 5183, 'york': 9909, 'goe': 3255, 'russia': 6719, 'reveng': 6639, 'russian': 6720, 'gangster': 3148, 'murder': 5417, 'son': 7213, 'meet': 5148, 'strong': 7390, 'decent': 2108, 'cop': 1967, 'bring': 1432, 'justice': 4609, '1980s': 26, 'alway': 317, 'guy': 3369, 'class': 1810, 'mediocr': 5146, 'blah': 1198, 'chemistri': 1759, 'handsom': 3411, 'within': 9760, '15': 15, 'abov': 83, 'villain': 9250, 'blond': 1211, 'rent': 6603, 'okay': 5858, 'faster': 2740, 'goe to': 3257, 'help him': 3594, 'bring the': 1433, 'portray the': 6303, 'bad guy': 965, 'interest to': 4093, 'this time': 8608, 'br not': 1371, 'not great': 5583, 'it realli': 4448, 'to this': 8929, 'who play': 9651, 'has some': 3454, 'face it': 2682, 'is such': 4271, 'actor that': 142, 'scene with': 6808, 'within the': 9761, 'minut into': 5213, 'been an': 1079, 'all can': 248, 'say about': 6766, 'he is': 3540, 'is real': 4257, 'nice to': 5518, 'the villain': 8292, 'is your': 4315, 'rent this': 6606, 'this flick': 8533, 'if there': 3850, 'noth els': 5624, 'on tv': 5901, 'it doesn': 4367, 'too bad': 8971, 'bad the': 972, 'the action': 7722, 'action scene': 131, 'scene are': 6787, 'be better': 1013, 'get to': 3198, 'br br not': 1316, 'who play the': 9652, 'in this movi': 4013, 'that he is': 7629, 'to look at': 8836, 'this movie br': 8581, 'if there is': 3851, 'get to see': 3199, 'to see what': 8896, 'load': 4883, 'wast': 9405, 'watching': 9435, 'commerci': 1885, '30': 42, 'ad': 151, 'makeup': 5030, 'ass': 846, 'least': 4745, 'imagin': 3876, 'white': 9627, 'teeth': 7542, 'dentist': 2134, 'gotten': 3305, 'self': 6904, 'lousi': 4933, 'chance': 1705, 'instead': 4073, 'pilot': 6217, 'lack': 4687, 'pray': 6324, 'death': 2103, 'episod': 2531, 'by far': 1566, 'far the': 2732, 'load of': 4884, 'my time': 5447, 'this show': 8601, 'an actual': 343, 'the least': 7998, 'to imagin': 8821, 'even after': 2559, 'go to': 3248, 'if the': 3849, 'were the': 9517, 'this may': 8560, 'good stori': 3287, 'stori line': 7357, 'of 10': 5673, 'of like': 5721, 'like to': 4830, 'to put': 8872, 'was not': 9357, 'not an': 5563, 'give it': 3214, 'befor it': 1091, 'by far the': 1567, 'base on the': 992, 'to say the': 8887, 'say the least': 6776, 'go to the': 3251, 'out of 10': 6047, 'david': 2085, 'directori': 2235, 'debut': 2106, 'hous': 3780, 'games': 3145, 'studi': 7399, 'psycholog': 6417, 'confid': 1923, 'game': 3144, 'margaret': 5062, 'ford': 3035, 'practic': 6322, 'written': 9875, 'somewhat': 7209, 'neither': 5494, 'defin': 2119, 'nor': 5556, 'prime': 6361, 'steven': 7332, 'owe': 6084, 'pay': 6139, 'mike': 5198, 'joe': 4553, 'charismat': 1741, 'con': 1911, 'claim': 1805, 'eight': 2442, 'hundr': 3817, 'agre': 216, 'wipe': 9708, 'clean': 1812, 'simpl': 7065, 'favor': 2748, 'card': 1647, 'middl': 5187, 'minutes': 5217, 'gone': 3263, 'audience': 907, 'dialogue': 2182, 'precis': 6327, 'lines': 4846, 'surreal': 7472, 'existence': 2641, 'introduc': 4108, 'memor': 5157, 'demonstr': 2131, 'works': 9814, 'lesson': 4770, 'stun': 7403, 'climax': 1820, 'keep': 4617, 'seems': 6891, 'learn': 4741, 'human': 3812, 'nature': 5469, 'open': 5970, 'complex': 1907, 'abl': 61, 'does': 2292, 'tight': 8677, 'assur': 854, 'induc': 4044, 'deepli': 2116, 'capabl': 1638, 'joey': 4554, 'dr': 2355, 'jay': 4531, 'since': 7077, 'us': 9174, 'future': 3140, 'under': 9106, 'and made': 490, 'hous of': 3783, 'in which': 4024, 'the dark': 7828, 'world of': 9818, 'is somewhat': 4269, 'with her': 9726, 'her own': 3618, 'she can': 6975, 'to some': 8904, 'to kill': 8826, 'kill him': 4637, 'if he': 3839, 'take her': 7499, 'the hous': 7966, 'where she': 9578, 'man who': 5041, 'into his': 4102, 'instead of': 4075, 'book and': 1233, 'it turn': 4483, 'agre to': 217, 'if she': 3846, 'on in': 5880, 'the back': 7743, 'the middl': 8037, 'middl of': 5188, 'of big': 5685, 'to leav': 8830, 'leav the': 4750, 'the room': 8173, 'for few': 2979, 'while he': 9618, 'is to': 4292, 'watch for': 9415, 'of one': 5742, 'by this': 1579, 'the audience': 7739, 'style and': 7409, 'through his': 8658, 'we are': 9458, 'her from': 3613, 'from that': 3104, 'is and': 4142, 'how it': 3790, 'keep the': 4620, 'go with': 3252, 'with an': 9718, 'and noth': 505, 'noth is': 5626, 'is what': 4306, 'what it': 9538, 'life and': 4788, 'whether or': 9587, 'or not': 5992, 'not it': 5588, 'film he': 2830, 'possibl to': 6309, 'charact who': 1730, 'must be': 5430, 'be abl': 1005, 'abl to': 62, 'you will': 9972, 'turn in': 9062, 'feel the': 2770, 'her she': 3621, 'make you': 5028, 'that she': 7674, 'capabl of': 1639, 'of what': 5824, 'and make': 491, 'it as': 4337, 'well the': 9501, 'support cast': 7456, 'written and': 9876, 'and direct': 414, 'play and': 6240, 'and film': 434, 'and will': 611, 'no doubt': 5527, 'us with': 9178, 'with more': 9735, 'more in': 5263, 'the future': 7931, 'film will': 2879, 'the one': 8088, 'one that': 5944, 'him and': 3664, 'and you': 620, 'can go': 1610, 'and look': 486, 'it up': 4485, 'you ll': 9945, 'movi you': 5367, 'you do': 9923, 'do not': 2269, 'rate this': 6483, '10 10': 3, 'it turn out': 4484, 'on in the': 5881, 'in the middl': 3987, 'the middl of': 8038, 'is go to': 4192, 'of one of': 5743, 'whether or not': 9588, 'it for the': 4377, 'be abl to': 1006, 'that she is': 7675, 'but this film': 1540, 'the one that': 8089, 'and you can': 621, 'this is one': 8548, 'question': 6451, 'thriller': 8654, 'sens': 6909, 'halfway': 3399, 'throw': 8666, 'arm': 751, 'scream': 6829, 'gene': 3164, 'stanley': 7293, 'mess': 5172, 'sum': 7445, 'ever made': 2585, 'plot and': 6257, 'and by': 402, 'to throw': 8933, 'give up': 3221, 'up br': 9149, 'and director': 415, 'this mess': 8561, 'onli be': 5954, 'sum up': 7446, 'up by': 9151, 'by their': 1578, 'up br br': 9150, 'happen': 3414, 'late': 4706, '1990': 27, 'launch': 4722, 'reunion': 6636, 'tour': 8997, '70': 50, 'toni': 8970, 'machin': 4967, 'promot': 6400, 'famous': 2715, 'festival': 2783, 'festiv': 2782, 'broke': 1439, 'wide': 9676, 'wave': 9437, 'search': 6847, 'replac': 6609, 'excess': 2630, 'timothi': 8711, 'mansion': 5058, 'sell': 6906, 'fortun': 3052, 'hire': 3686, 'try': 9058, 'abandon': 57, 'approach': 696, 'label': 4686, 'club': 1831, 'conflict': 1924, 'hang': 3412, 'togeth': 8957, 'second': 6851, 'chanc': 1703, 'earlier': 2408, 'enjoyable': 2509, 'crazi': 2019, 'tap': 7521, 'ii': 3870, 'gradual': 3310, 'becom': 1074, 'relationship': 6572, 'members': 5156, 'what happen': 9533, 'happen to': 3418, 'the late': 7994, 'at least': 870, 'that what': 7706, 'member of': 5154, 'run into': 6713, 'the son': 8211, 'son of': 7215, 'was at': 9322, 'at that': 876, 'the 70': 7715, 'up the': 9160, 'time is': 8688, 'is right': 4259, 'right to': 6659, 'off in': 5839, 'the death': 7832, 'death and': 2104, 'known for': 4675, 'and now': 506, 'are all': 701, 'the work': 8323, 'and their': 570, 'is still': 4270, 'has been': 3438, 'forc to': 3033, 'to sell': 8897, 'as his': 786, 'has not': 3450, 'is dead': 4169, 'him br': 3666, 'to give': 8804, 'give the': 3216, 'begin to': 1102, 'he want': 3566, 'them to': 8359, 'to start': 8907, 'first and': 2912, 'and so': 541, 'so they': 7150, 'hit the': 3727, 'scene is': 6797, 'to these': 8926, 'is on': 4239, 'start to': 7309, 'they all': 8423, 'becaus they': 1069, 'that made': 7650, 'becom more': 1075, 'follow the': 2958, 'the relationship': 8159, 'while it': 9619, 'veri funni': 9208, 'struggl to': 7395, 'to deal': 8767, 'death of': 2105, 'and with': 612, 'their own': 8346, 'what happen to': 9534, 'in the late': 3985, 'member of the': 5155, 'him br br': 3667, 'br it is': 1363, 'of the old': 5785, 'some of the': 7179, 'it is still': 4405, 'movie it is': 5376, 'to deal with': 8768, 'deal with the': 2098, 'the death of': 7833, 'make the film': 5019, 'disturb': 2260, 'depict': 2139, 'truth': 9057, 'carri': 1659, 'teenag': 7541, 'cal': 1584, 'normal': 5557, 'held': 3589, 'techniqu': 7536, 'la': 4684, 'blair': 1199, 'witch': 9715, 'ben': 1128, 'succeed': 7422, 'issu': 4323, 'exact': 2612, 'issues': 4324, 'hate': 3461, 'power': 6319, 'happening': 3422, 'happened': 3421, 'subject': 7414, 'matter': 5090, 'what is': 9536, 'about this': 76, 'the truth': 8271, 'out by': 6039, 'succeed in': 7423, 'live of': 4870, 'of two': 5818, 'friend who': 3087, 'high school': 3656, 'exact what': 2614, 'they seem': 8455, 'of peopl': 5746, 'so what': 7156, 'of you': 5829, 'you just': 9942, 'just doesn': 4587, 'out the': 6055, 'day the': 2090, 'scene in': 6794, 'the school': 8186, 'are made': 720, 'the more': 8048, 'for that': 3007, 'can believ': 1603, 'believ it': 1115, 'the hand': 7950, 'given the': 3225, 'the subject': 8238, 'subject matter': 7415, 'about this film': 77, 'this film is': 8527, 'film is not': 2836, 'the live of': 8012, 'seem to be': 6889, 'lot of peopl': 4927, 'scene in the': 6795, 'all the more': 269, 'that this is': 7695, 'this is not': 8547, 'bloodi': 1214, 'violent': 9255, 'super': 7450, 'fight': 2792, 'hong': 3745, 'kong': 4677, 'history': 3725, 'consid': 1934, 'masterpiece': 5083, 'career': 1653, 'men': 5161, 'philip': 6194, 'chop': 1777, 'ain': 223, 'ninja': 5526, 'not as': 5564, 'hong kong': 3746, 'he would': 3570, 'on to': 5898, 'be in': 1022, 'who is': 9642, 'this but': 8512, 'but still': 1525, 'good as': 3267, 'made by': 4971, 'but all': 1472, 'good and': 3266, 'is not as': 4229, 'to be in': 8738, 'as good as': 782, 'and this is': 581, 'bob': 1222, 'plan': 6233, 'inevit': 4049, 'odd': 5672, 'turkey': 9060, 'realis': 6507, 'knock': 4656, 'stink': 7342, 'folks': 2955, 'guess': 3358, 'need': 5481, 'special': 7246, 'junk': 4577, 'fast': 2738, 'push': 6433, 'some time': 7189, 'film of': 2852, 'the odd': 8085, 'be one': 1030, 'give you': 3223, 'it goe': 4381, 'man the': 5039, 'who the': 9655, 'man is': 5037, 'that bad': 7598, 'is onli': 4243, 'onli in': 5959, 'he need': 3553, 'need the': 5484, 'work at': 9799, 'that time': 7698, 'time in': 8687, 'his career': 3690, 'some reason': 7185, 'hate it': 3462, 'it that': 4470, 'for ani': 2971, 'special effect': 7247, 'the man who': 8027, 'would be the': 9841, 'it realli is': 4449, 'and the rest': 567, 'rest of the': 6625, 'for some reason': 3002, 'like this one': 4829, 'favorit': 2749, 'tom': 8965, 'jerri': 4538, 'perfect': 6163, 'halloween': 3401, 'trick': 9042, 'window': 9704, 'blind': 1207, 'shirt': 7001, 'ghost': 3201, 'listen': 4853, 'program': 6396, 'radio': 6466, 'frighten': 3090, 'stand': 7288, 'leap': 4740, 'throat': 8655, 'chill': 1770, 'observ': 5662, 'scare': 6782, 'ending': 2491, 'four': 3065, 'mous': 5291, 'witti': 9767, 'cat': 1675, 'million': 5203, 'dollar': 2305, 'quiet': 6455, 'please': 6253, 'trap': 9019, 'happy': 3426, 'solid': 7169, 'texa': 7569, 'below': 1127, 'chuck': 1787, 'jones': 4565, 'here is': 3636, 'perfect for': 6164, 'know it': 4662, 'have much': 3489, 'as in': 791, 'the window': 8317, 'make it': 5008, 'it like': 4414, 'put it': 6437, 'it on': 4435, 'on my': 5885, 'listen to': 4854, 'and be': 394, 'the horror': 7963, 'the story': 8232, 'story the': 7372, 'thing and': 8476, 'and laugh': 480, 'br love': 1367, 'the ending': 7867, 'was littl': 9348, 'you know': 9943, 'know this': 4665, 'first of': 2917, 'hous and': 3781, 'and also': 383, 'other are': 6015, 'the cat': 7788, 'to make it': 8840, 'br br love': 1312, 'is the first': 4283, 'spi': 7258, 'night': 5521, 'adapt': 154, 'length': 4763, 'faith': 2699, 'produc': 6385, 'hollywood': 3738, 'intellig': 4081, 'green': 3337, 'nick': 5520, 'older': 5862, 'differ': 2210, 'lee': 4753, 'always': 320, 'industry': 4047, 'twin': 9080, 'air': 224, 'premis': 6334, 'appear': 686, 'knowledg': 4672, 'utter': 9192, 'confus': 1926, 'unfold': 9121, 'fellow': 2776, 'lowest': 4953, 'industri': 4046, 'lord': 4910, 'it an': 4334, 'veri good': 9210, 'and most': 496, 'the origin': 8099, 'approach to': 697, 'to how': 8820, 'how this': 3796, 'is probabl': 4252, 'these days': 8418, 'is too': 4294, 'bad but': 962, 'direct and': 2224, 'who seem': 9653, 'he get': 3534, 'him to': 3677, 'to take': 8912, 'take on': 7503, 'is beauti': 4152, 'beauti and': 1053, 'great as': 3323, 'as always': 767, 'with littl': 9730, 'isn the': 4321, 'even if': 2565, 'the tv': 8272, 'tv show': 9077, 'is total': 4295, 'you don': 9924, 'don have': 2313, 'to read': 8874, 'to understand': 8937, 'understand the': 9113, 'in fact': 3914, 'the novel': 8082, 'and some': 543, 'the event': 7873, 'to you': 8953, 'is veri good': 4302, 'one of his': 5934, 'to the origin': 8919, 'this film was': 8532, 'who seem to': 9654, 'you don have': 9925, 'read the book': 6497, 'morgan': 5273, 'freeman': 3079, 'spanish': 7240, 'whilst': 9625, 'research': 6615, 'independ': 4038, 'posit': 6305, 'easi': 2411, 'mood': 5252, 'smile': 7119, 'cliché': 1817, 'laughter': 4721, 'himself and': 3680, 'was bit': 9327, 'but as': 1475, 'as soon': 812, 'soon as': 7221, 'to enjoy': 8782, 'enjoy the': 2505, 'it show': 4461, 'show how': 7025, 'easi to': 2412, 'to follow': 8798, 'without the': 9766, 'the need': 8078, 'need for': 5482, 'which make': 9609, 'about the film': 73, 'as soon as': 813, 'was in the': 9344, 'and it is': 471, 'all the way': 272, 'forward': 3053, 'vincent': 9251, 'nut': 5658, 'affair': 178, 'fantasi': 2722, 'unbeliev': 9102, 'speed': 7253, 'experiment': 2655, 'wing': 9705, 'period': 6181, 'blue': 1217, 'realistic': 6511, 'look forward': 4901, 'forward to': 3054, 'for two': 3024, 'realli like': 6524, 'and have': 453, 'affair with': 179, 'don like': 2317, 'it take': 4469, 'to an': 8725, 'year ago': 9888, 'mean it': 5130, 'it had': 4385, 'end of': 2481, 'in short': 3964, 'it didn': 4364, 'stay in': 7321, 'veri long': 9214, 'br there': 1392, 'that came': 7603, 'dure this': 2395, 'was much': 9353, 'much more': 5407, 'look forward to': 4902, 'at the end': 878, 'the end of': 7864, 'br br there': 1329, 'carrey': 1658, 'haven': 3520, 'th': 7571, 'bruce': 1448, 'none': 5550, 'review': 6641, 'thinking': 8503, 'somehow': 7193, 'note': 5619, 'daili': 2062, 'steve': 7331, 'hilari': 3661, 'jim': 4544, 'piano': 6201, 'let me': 4775, 'start out': 7307, 'haven seen': 3521, 'his movi': 3709, 'none of': 5551, 'other review': 6023, 'but feel': 1487, 'feel like': 2765, 'was poor': 9367, 'attempt at': 897, 'br on': 1375, 'or if': 5986, 'just want': 4605, 'none of the': 5552, 'like this movi': 4827, 'br br on': 1320, 'of the cast': 5767, 'just want to': 4606, 'want to see': 9298, 'exampl': 2617, 'superb': 7451, 'inspir': 4068, 'manipul': 5055, 'fake': 2700, 'singl': 7081, 'suspens': 7478, 'parts': 6126, 'thus': 8673, 'extraordinari': 2671, 'unfortun': 9123, 'times': 8705, 'is great': 4194, 'exampl of': 2618, 'is superb': 4272, 'without be': 9764, 'point where': 6281, 'where they': 9580, 'consid it': 1935, 'there wasn': 8410, 'shown in': 7041, 'though they': 8637, 'into an': 4100, 'an action': 340, 'made to': 4981, 'focus on': 2952, 'man in': 5036, 'well done': 9495, 'to the film': 8917, 'describ': 2145, 'bland': 1201, 'terribl': 7562, 'dull': 2388, 'respons': 6621, 'mari': 5063, 'highlight': 3659, 'statement': 7316, 'male': 5032, 'sister': 7085, 'brother': 1442, 'opposit': 5981, 'tall': 7519, 'mark': 5065, 'rain': 6468, 'forest': 3037, 'kelli': 4622, 'kidnap': 4632, 'step': 7327, 'felt': 2777, 'rental': 6607, 'home': 3739, 'gave': 3156, 'to describ': 8770, 'it were': 4501, 'were so': 9515, 'it good': 4382, 'good but': 3272, 'it not': 4430, 'it just': 4411, 'laugh at': 4715, 'at it': 869, 'it br': 4347, 'to other': 8858, 'highlight of': 3660, 'the male': 8025, 'girl is': 3207, 'and can': 403, 'can act': 1601, 'can tell': 1624, 'especi the': 2546, 'the support': 8241, 'whi would': 9600, 'keep his': 4618, 'is he': 4198, 'he realli': 3557, 'everyon els': 2597, 'there isn': 8399, 'the crime': 7825, 'know how': 4659, 'how he': 3789, 'back from': 944, 'be seen': 1034, 'friend of': 3086, 'director and': 2232, 'and if': 463, 'gave the': 3159, 'but it not': 1506, 'it br br': 4348, 'is not the': 4231, 'you can tell': 9921, 'all the actor': 267, 'tri to get': 9036, 'to be seen': 8741, 'of the director': 5772, 'the director and': 7843, 'and if you': 464, 'besid': 1131, 'direction': 2230, 'constant': 1940, 'aid': 221, 'shots': 7015, 'joke': 4560, 'bat': 998, 'average': 918, 'mexican': 5179, 'meant': 5137, 'racist': 6465, 'result': 6627, 'desper': 2156, 'almost': 290, 'cri': 2035, 'ugli': 9094, 'people': 6161, 'racism': 6464, 'aside': 838, 'pile': 6215, 'make me': 5009, 'besid the': 1132, 'lack of': 4689, 'of plot': 5749, 'was still': 9377, 'wast of': 9406, 'of time': 5816, 'the idea': 7972, 'but what': 1549, 'comedi and': 1868, 'side of': 7048, 'that no': 7662, 'realli don': 6518, 'think this': 8500, 'meant to': 5138, 'it more': 4425, 'result of': 6630, 'out from': 6041, 'the love': 8017, 'love of': 4941, 'put the': 6440, 'down to': 2350, 'anyon who': 665, 'and time': 586, 'pile of': 6216, 'that should': 7676, 'but in this': 1500, 'wast of time': 9407, 'and some of': 544, 'meant to be': 5139, 'think that it': 8496, 'tri to find': 9035, 'to watch this': 8946, 'donald': 2329, 'woods': 9793, 'south': 7235, 'kevin': 4625, 'convinc': 1962, 'denzel': 2135, 'washington': 9401, 'master': 5080, 'urg': 9173, 'remember': 6594, 'the cinematographi': 7805, 'cinematographi is': 1795, 'good the': 3288, 'found out': 3061, 'the realiti': 8156, 'is complet': 4168, 'so that': 7147, 'that when': 7707, 'appear on': 690, 'year later': 9893, 'you to': 9966, 'this it': 8553, 'such an': 7428, 'an incred': 366, 'the cinematographi is': 7806, 'and the stori': 568, 'but it is': 1505, 'seven': 6949, 'smith': 7120, 'vast': 9202, 'emotion': 2467, 'skill': 7096, 'intens': 4086, 'crash': 2017, 'raw': 6488, 'stick': 7334, 'deep': 2114, 'passion': 6129, 'shallow': 6965, 'exist': 2639, 'therefor': 8414, 'pain': 6094, 'happi': 3424, 'lost': 4918, 'deeper': 2115, 'what to': 9548, 'just watch': 4607, 'one can': 5920, 'can make': 1615, 'of human': 5713, 'and beauti': 395, 'in hollywood': 3927, 'compar it': 1895, 'to pay': 8861, 'as far': 776, 'far as': 2727, 'the show': 8204, 'of both': 5687, 'light and': 4802, 'in such': 3969, 'with you': 9758, 'for long': 2987, 'and give': 444, 'lot to': 4929, 'to think': 8927, 'think about': 8486, 'for and': 2970, 'one for': 5924, 'but rather': 1521, 'someth more': 7202, 'exist in': 2640, 'all around': 244, 'end it': 2480, 'is true': 4298, 'true to': 9052, 'to life': 8832, 'life that': 4796, 'just not': 4595, 'you think': 9965, 'it should': 4459, 'mani peopl': 5050, 'peopl were': 6156, 'love and': 4936, 'life of': 4795, 'you are': 9911, 'someon who': 7196, 'who look': 9647, 'don know what': 2316, 'know what to': 4667, 'as far as': 777, 'for long time': 2988, 'movi like this': 5335, 'the end it': 7863, 'it should be': 4460, 'if you are': 3857, 'pleas': 6250, 'post': 6311, 'silent': 7057, 'clair': 1808, 'reput': 6612, 'maker': 5029, 'brook': 1441, 'technic': 7535, 'switch': 7487, 'french': 3080, 'dialog': 2176, 'slap': 7102, 'lip': 4849, 'movement': 5297, 'many': 5059, 'match': 5084, 'explain': 2657, 'ms': 5394, 'prefer': 6331, 'styl': 7407, 'moral': 5255, '1930': 19, 'win': 9700, 'contest': 1946, 'fanci': 2720, 'spell': 7254, 'huh': 3811, 'lloyd': 4882, 'abus': 93, 'pick': 6202, 'took': 8982, 'treatment': 9026, 'receiv': 6540, 'impli': 3883, 'le': 4730, 'rating': 6486, 'the various': 8285, 'was an': 9319, 'an origin': 372, 'saw the': 6762, 'the sound': 8214, 'and without': 613, 'this in': 8540, 'in mind': 3938, 'as film': 778, 'film maker': 2848, 'bit of': 1190, 'well this': 9502, 'is in': 4204, 'in mani': 3937, 'pretti much': 6352, 'through the': 8660, 'the earli': 7851, 'film were': 2875, 'dialog and': 2177, 'and sound': 547, 'veri poor': 9217, 'in particular': 3959, 'don even': 2309, 'close to': 1826, 'is be': 4151, 'could do': 1983, 'film this': 2869, 'and would': 617, 'had just': 3382, 'film and': 2804, 'film with': 2880, 'camera work': 1597, 'at times': 887, 'times and': 8706, 'the problem': 8144, 'the over': 8105, 'but by': 1480, 'plot is': 6259, 'is bit': 4157, 'and her': 456, 'it all': 4329, 'but is': 1502, 'charact of': 1724, 'he look': 3547, 'he just': 3543, 'throughout the': 8663, 'and no': 503, 'about his': 68, 'his charact': 3691, 'to laugh': 8828, 'me that': 5121, 'and don': 419, 'it at': 4338, 'all br': 245, 'far better': 2729, 'can understand': 1627, 'and it was': 473, 'the film the': 7905, 'this is just': 8545, 'would have been': 9846, 'it would have': 4511, 'the plot is': 8128, 'the charact of': 7797, 'charact of the': 1725, 'at all br': 858, 'all br br': 246, 'br there are': 1393, 'film of the': 2854, 'ned': 5480, 'wonder': 9782, 'australian': 911, 'taken': 7510, 'gang': 3147, 'justifi': 4610, 'stellar': 7326, 'fantast': 2723, 'loyal': 4954, 'battl': 1002, 'alas': 230, 'aspect': 842, 'slight': 7109, 'disappoint': 2239, 'cover': 2009, 'regardless': 6566, 'flaws': 2939, 'emotions': 2468, 'assum': 852, 'is wonder': 4312, 'his best': 3688, 'best friend': 1138, 'and perhap': 522, 'film to': 2870, 'the role': 8171, 'role of': 6685, 'the moment': 8042, 'win the': 9701, 'the battl': 7751, 'br some': 1382, 'aspect of': 843, 'film are': 2807, 'fan and': 2717, 'film could': 2817, 'to cover': 8764, 'not enough': 5573, 'film which': 2878, 'film would': 2881, 'better to': 1163, 'rather than': 6485, 'to portray': 8866, 'the world of': 8326, 'br there is': 1394, 'there is an': 8392, 'the film to': 7906, 'the role of': 8172, 'it was not': 4493, 'br br some': 1325, 'aspect of the': 844, 'the film are': 7895, 'broadway': 1438, 'relief': 6583, 'eve': 2558, 'wick': 9675, 'jennif': 4535, 'cinderella': 1790, 'garden': 3151, 'matthew': 5095, 'princ': 6362, 'charming': 1746, 'jean': 4533, 'fairi': 2698, 'southern': 7236, 'lady': 4692, 'character': 1732, 'martin': 5074, 'tini': 8712, 'flow': 2950, 'thrown': 8668, 'children': 1768, 'happili': 3425, 'continu': 1948, 'parent': 6105, 'final': 2891, 'tire': 8714, 'best of': 1140, 'an excel': 361, 'especi in': 2545, 'not sure': 5604, 'br as': 1276, 'as is': 792, 'thrown in': 8669, 'in for': 3919, 'the older': 8087, 'up with': 9165, 'coupl of': 1999, 'well and': 9489, 'continu to': 1949, 'tire of': 8715, 'is the best': 4282, 'the best of': 7760, 'br br as': 1290, 'hors': 3769, 'red': 6552, 'park': 6109, 'western': 9524, 'paid': 6093, 'buddi': 1451, 'grand': 3312, 'slow': 7112, 'door': 2339, 'cabin': 1580, 'near the': 5474, 'your eye': 9985, 'had seen': 3388, 'did they': 2193, 'oh well': 5854, 'it will': 4503, 'will make': 9689, 'you want': 9967, 'them all': 8348, 'put in': 6435, 'act was': 121, 'ok but': 5857, 'be taken': 1038, 'the poor': 8135, 'natur of': 5467, 'that look': 7649, 'movie and': 5368, 'worst of': 9830, 'all time': 280, 'but this is': 1541, 'you want to': 9968, 'the act was': 7720, 'watch this movie': 9431, 'this movie and': 8580, 'the worst of': 8330, 'of all time': 5677, 'prais': 6323, 'peak': 6142, 'bore': 1238, 'titl': 8716, 'season': 6849, 'episodes': 2534, 'proper': 6404, 'agent': 212, 'cooper': 1966, 'stone': 7348, 'identifi': 3836, 'supernatur': 7454, 'abil': 59, 'unnecessari': 9139, 'example': 2620, 'serv': 6934, 'cup': 2050, 'lay': 4727, 'floor': 2947, 'gun': 3366, 'already': 304, 'comments': 1884, 'hell': 3591, 'comic': 1874, 'seen in': 6896, 'in my': 3943, 'my life': 5443, 'life br': 4790, 'br now': 1372, 'have seen': 3501, 'and see': 535, 'can take': 1623, 'scene that': 6800, 'can you': 1630, 'whi he': 9593, 'he did': 3529, 'are too': 740, 'br for': 1352, 'for example': 2978, 'start with': 7311, 'old man': 5861, 'the floor': 7920, 'he got': 3536, 'got the': 3300, 'the gun': 7947, 'is do': 4171, 'noth but': 5623, 'that all': 7589, 'this scene': 8598, 'bore and': 1239, 'br would': 1410, 'comic book': 1875, 'ever seen in': 2588, 'in my life': 3944, 'life br br': 4791, 'br br now': 1317, 'br br for': 1301, 'br br would': 1342, 'content': 1945, 'improv': 3893, 'sink': 7083, 'bare': 988, 'our': 6031, 'georg': 3173, 'airport': 225, 'stuck': 7396, 'the kind': 7987, 'of movi': 5731, 'time but': 8684, 'as bad': 771, 'bad as': 959, 'thought it': 8640, 'was br': 9329, 'some kind': 7174, 'down in': 2348, 'has one': 3453, 'the star': 8223, 'abov the': 84, 'all these': 274, 'movies br': 5387, 'br watch': 1403, 'the original': 8101, 'is the kind': 4284, 'the kind of': 7988, 'kind of movi': 4647, 'of movi that': 5732, 'all the time': 271, 'as bad as': 772, 'thought it was': 8641, 'was br br': 9330, 'some kind of': 7175, 'movies br br': 5388, 'br br watch': 1335, 'foot': 2962, 'cusack': 2055, 'accent': 96, 'laughable': 4719, 'movi about': 5298, 'written by': 9877, 'has never': 3448, 'you expect': 9928, 'expect the': 2646, 'the credit': 7824, 'charact are': 1715, 'and the movi': 564, 'the charact are': 7795, 'militari': 5201, 'train': 9013, 'genr': 3169, 'offic': 5847, 'jane': 4525, 'honor': 3747, 'above': 85, 'carl': 1655, 'courag': 2001, 'shine': 6998, 'bright': 1430, 'vision': 9260, 'sunday': 7449, 'central': 1692, 'initi': 4056, 'instance': 4071, 'judg': 4571, 'pace': 6087, 'before': 1095, 'rise': 6664, 'occasion': 5670, 'dimension': 2219, 'suicid': 7440, 'comedian': 1870, 'adventur': 173, 'parents': 6106, 'soul': 7229, 'pleasur': 6254, 'legend': 4760, 'yard': 9884, 'actually': 150, 'co': 1833, 'cameo': 1594, 'fond': 2959, 'area': 747, 'we have': 9467, 'chang the': 1708, 'most like': 5278, 'sinc it': 7074, 'probabl the': 6374, 'of charact': 5688, 'charact and': 1713, 'develop of': 2171, 'of show': 5754, 'state of': 7314, 'scene the': 6801, 'of scene': 5751, 'with his': 9728, 'his wife': 3719, 'we don': 9462, 'much about': 5396, 'about him': 67, 'him for': 3669, 'for instance': 2985, 'see the': 6872, 'and we': 602, 'assum that': 853, 'but there': 1533, 'is no': 4227, 'on that': 5890, 'that point': 7668, 'onli one': 5960, 'him the': 3676, 'need to': 5485, 'characters br': 1735, 'give an': 3212, 'perform as': 6169, 'role and': 6680, 'and charact': 405, 'is far': 4181, 'far more': 2731, 'than ani': 7572, 'one dimension': 5923, 'charact with': 1731, 'is much': 4222, 'the part': 8109, 'was almost': 9316, 'take the': 7508, 'br after': 1266, 'his hand': 3701, 'this the': 8606, 'meet the': 5149, 'to his': 8818, 'it seem': 4453, 'like he': 4809, 'work br': 9800, 'right in': 6657, 'wonder if': 9784, 'she had': 6983, 'part in': 6115, 'in everi': 3913, 'film in': 2833, 'but she': 1523, 'it off': 4434, 'stay with': 7322, 'co star': 1834, 'here br': 3631, 'the dvd': 7850, 'the real': 8155, 'rate it': 6481, 'it 10': 4325, 'stori and': 7353, 'charact is': 1723, 'the central': 7790, 'in both': 3907, 'perform that': 6176, 'that they are': 7692, 'happen to be': 3419, 'fact that the': 2690, 'is the same': 4288, 'focus on the': 2953, 'is probabl the': 4253, 'the charact and': 7794, 'but there is': 1535, 'there is no': 8393, 'characters br br': 1736, 'this is an': 8541, 'is an excel': 4141, 'that it was': 7645, 'br br after': 1281, 'it seem like': 4455, 'work br br': 9801, 'here br br': 3632, 'enjoy this film': 2507, 'celebr': 1686, 'hitler': 3729, 'visit': 9262, 'backdrop': 954, 'marri': 5067, 'fire': 2910, 'pursu': 6432, 'alon': 295, 'attend': 899, 'histor': 3722, 'spite': 7265, 'author': 913, 'count': 1994, 'king': 4649, 'victor': 9235, 'iii': 3871, 'voic': 9265, 'romant': 6692, 'splendid': 7268, 'interesting': 4094, 'elabor': 2444, 'atmospher': 889, 'sensit': 6913, 'golden': 3262, 'foreign': 3036, 'stretch': 7385, 'limit': 4836, 'scenario': 6785, 'place': 6223, 'stage': 7285, 'semi': 6907, 'dance': 2069, 'illustr': 3873, 'societi': 7163, 'unlik': 9137, 'thoma': 8623, 'pari': 6107, 'family': 2714, 'roman': 6689, 'flat': 2936, 'strike': 7387, 'marvel': 5075, 'apart': 677, 'serv as': 6935, 'love stori': 4942, 'marri to': 5068, 'son and': 7214, 'alon in': 296, 'in spite': 3967, 'spite of': 7266, 'is set': 4260, 'with other': 9740, 'describ the': 2147, 'out with': 6061, 'result in': 6628, 'music score': 5425, 'score by': 6825, 'the drama': 7848, 'his film': 3697, 'take place': 7506, 'place on': 6227, 'and are': 388, 'for exampl': 2977, 'place in': 6225, 'in spite of': 3968, 'take place in': 7507, 'place in the': 6226, 'and at the': 392, 'spoiler': 7272, 'concept': 1914, 'answer': 655, 'ask': 839, 'theori': 8375, 'china': 1771, 'chain': 1698, 'reaction': 6494, 'basebal': 993, 'motion': 5287, 'fresh': 3082, 'tune': 9059, 'is base': 4148, 'the concept': 7816, 'concept of': 1915, 'main charact': 4991, 'of us': 5819, 'and ask': 390, 'have an': 3468, 'just like': 4592, 'the result': 8163, 'movie if': 5373, 'if one': 3844, 'one will': 5950, 'it out': 4441, 'and final': 435, 'is base on': 4149, 'the main charact': 8020, 'of this movi': 5810, 'it out of': 4442, 'have seen the': 3504, 'damn': 2065, 'goldberg': 3261, 'actress': 147, 'good movie': 3283, 'the children': 7802, 'gave me': 3158, 'sens of': 6910, 'hope for': 3752, 'good perform': 3285, 'here but': 3633, 'best perform': 1144, 'whole movi': 9668, 'the actress': 7727, 'actress who': 148, 'the titl': 8259, 'she was': 6991, 'in more': 3939, 'movi should': 5348, 'should have': 7018, 'the whole movi': 8311, 'frank': 3072, 'sinatra': 7071, 'creepy': 2033, 'rob': 6670, 'grant': 3313, 'borrow': 1244, 'demand': 2129, 'heard': 3577, 'bay': 1003, 'was pretti': 9368, 'when this': 9569, 'out in': 6042, 'the us': 8281, 'tv and': 9074, 'and watch': 600, 'it over': 4443, 'over and': 6071, 'and over': 518, 'over again': 6070, 'this day': 8516, 'and had': 450, 'the voic': 8295, 'great and': 3322, 'was surpris': 9380, 'surpris to': 7470, 'find out': 2899, 'was written': 9399, 'show that': 7030, 'veri much': 9215, 'much like': 5406, 'show to': 7032, 'but don': 1485, 'peopl have': 6149, 'heard of': 3578, 'out in the': 6043, 'in the us': 4003, 'and watch it': 601, 'over and over': 6072, 'and over again': 519, 'to find out': 8795, 'turner': 9072, 'oscar': 6010, 'month': 5251, 'easili': 2414, 'sequel': 6918, 'winner': 9706, 'juli': 4572, 'animation': 645, 'past': 6130, 'british': 1435, 'london': 4889, 'england': 2499, 'summer': 7447, 'general': 3165, 'guard': 3357, 'wherea': 9584, 'former': 3049, 'iron': 4125, 'remind': 6595, 'dad': 2061, 'army': 753, 'war': 9300, 'three': 8651, 'disney': 2254, 'fashion': 2737, 'road': 6669, 'soldier': 7167, 'india': 4040, 'metal': 5176, 'femal': 2780, 'price': 6357, 'sole': 7168, 'brief': 1429, 'boys': 1264, 'yellow': 9899, 'bird': 1185, 'santa': 6748, 'denni': 2133, 'occas': 5669, 'lifetim': 4799, 'roy': 6705, 'bigger': 1180, 'sam': 6738, 'magic': 4987, 'sea': 6844, 'drawn': 2362, 'latter': 4712, 'bang': 984, 'enough to': 2514, 'as it': 793, 'film that': 2864, 'an oscar': 373, 'oscar for': 6011, 'special effects': 7249, 'films br': 2887, 'is easili': 4173, 'success of': 7426, 'that film': 7616, 'it in': 4394, 'set in': 6940, 'if not': 3843, 'it even': 4371, 'here as': 3630, 'not too': 5611, 'the british': 7776, 'the local': 8013, 'year of': 9894, 'the war': 8297, 'the period': 8118, 'appear of': 689, 'the three': 8253, 'in london': 3932, 'music number': 5424, 'complet with': 1906, 'of which': 5825, 'that for': 7617, 'her perform': 3619, 'had been': 3380, 'been in': 1082, 'the pictur': 8121, 'pictur of': 6205, 'the final': 7909, 'but onli': 1520, 'she play': 6988, 'the femal': 7889, 'so when': 7157, 'you may': 9950, 'understand what': 9114, 'what we': 9551, 'when she': 9566, 'she did': 6977, 'is pretti': 4251, 'pretti good': 6351, 'learn that': 4743, 'he can': 3526, 'someth of': 7203, 'in two': 4019, 'sequenc of': 6921, 'he should': 3560, 'the german': 7936, 'find that': 2901, 'than he': 7574, 'the magic': 8018, 'under the': 9107, 'the sea': 8192, 'are well': 745, 'worth the': 9834, 'the view': 8290, 'the latter': 7995, 'pretti bad': 6350, 'as said': 809, 'said it': 6732, 'best work': 1147, 'as it is': 794, 'it is one': 4403, 'the film that': 7904, 'films br br': 2888, 'is set in': 4261, 'in the earli': 3978, 'and in the': 466, 'that he can': 7627, 'br as for': 1277, 'glover': 3234, 'appreci': 694, 'shows': 7043, 'choos': 1775, 'drug': 2378, 'didn know': 2200, 'make of': 5012, 'guess that': 3360, 'was all': 9315, 'all about': 242, 'have never': 3490, 'film like': 2842, 'doubt that': 2344, 'that realli': 7669, 'put togeth': 6442, 'to appreci': 8732, 'it you': 4512, 'this guy': 8537, 'just so': 4600, 'can help': 1612, 'through it': 8659, 'seen and': 6892, 'other have': 6019, 'choos to': 1776, 'view the': 9243, 'will have': 9687, 'what it was': 9540, 'have never seen': 3491, 'saw this film': 6764, 'have to be': 3513, 'grey': 3340, 'strange': 7379, 'beyond': 1170, 'uncl': 9104, 'bathroom': 1000, 'reader': 6499, 'filmed': 2883, 'edi': 2424, 'thumb': 8672, 'nose': 5560, 'society': 7164, 'and funni': 442, 'funni and': 3129, 'and sad': 533, 'sad and': 6726, 'is beyond': 4156, 'was well': 9397, 'top of': 8986, 'peopl that': 6154, 'that may': 7655, 'may have': 5100, 'wish to': 9713, 'be just': 1025, 'the top of': 8264, 'movi is about': 5324, 'is about the': 4131, 'joseph': 4566, 'disappointed': 2240, 'moving': 5391, 'accur': 108, 'digit': 2218, 'unusu': 9144, 'piec': 6209, 'round': 6702, 'tim': 8679, 'cox': 2011, 'this and': 8506, 'was quit': 9370, 'with lot': 9731, 'which was': 9614, 'was veri': 9395, 'actor who': 145, 'which has': 9603, 'as ani': 770, 'this if': 8539, 'the chanc': 7791, 'with lot of': 9732, 'it was an': 4487, 'you get the': 9932, 'sci': 6816, 'fi': 2787, 'women': 9775, 'disgust': 2252, 'lower': 4952, 'toler': 8964, 'whatev': 9554, 'subsequ': 7417, 'investig': 4113, 'head': 3571, 'heston': 3647, 'futur': 3139, 'intern': 4095, 'corpor': 1974, 'gorgeous': 3296, 'secur': 6856, 'apartment': 679, 'mass': 5078, 'car': 1645, 'indeed': 4037, 'discuss': 2250, 'excit': 2631, 'edward': 2429, 'sidekick': 7050, 'profound': 6395, 'is brilliant': 4161, 'sci fi': 6817, 'men and': 5162, 'and women': 614, 'film have': 2828, 'to mani': 8844, 'and almost': 382, 'almost everi': 293, 'love it': 4940, 'was just': 9346, 'and stupid': 551, 'of that': 5761, 'that has': 7624, 'just have': 4590, 'have alway': 3467, 'begin with': 1103, 'murder and': 5418, 'the head': 7952, 'head of': 3573, 'is terribl': 4276, 'and high': 458, 'live in': 4868, 'that come': 7606, 'same time': 6741, 'have taken': 3507, 'the futur': 7930, 'whi the': 9597, 'die and': 2205, 'the aw': 7742, 'he could': 3528, 'could not': 1990, 'should not': 7020, 'ruin the': 6708, 'however the': 3804, 'film has': 2827, 'has great': 3442, 'and act': 376, 'act and': 114, 'not for': 5576, 'movi that is': 5353, 'the film and': 7894, 'it was just': 4490, 'is the onli': 4287, 'br the film': 1386, 'set in the': 6941, 'and all the': 381, 'at the same': 879, 'the same time': 8179, 'the film has': 7900, 'not for the': 5577, 'this is great': 8544, 'film that is': 2865, 'imposs': 3886, 'violenc': 9252, 'appal': 681, 'flip': 2945, 'betray': 1149, 'ride': 6652, 'negat': 5490, 'the write': 8331, 'imposs to': 3887, 'with and': 9719, 'the violenc': 8293, 'not veri': 5612, 'show us': 7034, 'us the': 9176, 'eye and': 2675, 'voic of': 9266, 'the devil': 7835, 'worst movi': 9827, 'garbage': 3150, 'hack': 3378, 'chapter': 1712, 'bored': 1240, 'scratch': 6828, 'trash': 9020, 'aliv': 240, 'basic': 996, 'steal': 7323, 'mock': 5231, 'portion': 6296, 'idiot': 3837, 'and complet': 407, 'and should': 539, 'steal the': 7324, 'the name': 8073, 'portion of': 6297, 'throw in': 8667, 'in some': 3966, 'so the': 7148, 'of the book': 5766, 'to make the': 8842, 'to see it': 8891, 'of it and': 5717, 'belov': 1126, 'moon': 5253, 'reminisc': 6598, 'box': 1258, 'tradit': 9008, 'awar': 923, 'shall': 6964, 'activ': 133, 'seek': 6883, 'popular': 6294, 'angl': 630, 'possess': 6306, 'fair': 2697, 'stars': 7303, 'the mark': 8029, 'littl bit': 4858, 'in between': 3905, 'the moon': 8046, 'run out': 6714, 'as be': 773, 'reminisc of': 6599, 'the littl': 8010, 'the box': 7773, 'is never': 4225, 'bit too': 1191, 'for someon': 3003, 'the wrong': 8333, 'awar of': 924, 'of life': 5720, 'out this': 6057, 'as result': 808, 'first two': 2925, 'lack the': 4690, 'the emot': 7858, 'were to': 9518, 'that be': 7599, 'tri and': 9031, 'and certain': 404, 'set the': 6944, 'the standard': 8222, 'thing to': 8483, 'to come': 8760, 'the onli one': 8092, 'and that was': 558, 'the first two': 7919, 'melodramat': 5152, 'plain': 6232, 'town': 9001, 'creepi': 2032, 'psycho': 6416, 'offer': 5846, 'gem': 3163, 'what make': 9541, 'moment that': 5241, 'are just': 715, 'just plain': 4597, 'great to': 3333, 'rent it': 6604, 'for good': 2981, 'center around': 1691, 'small town': 7116, 'can get': 1608, 'the night': 8081, 'night and': 5522, 'way and': 9438, 'to let': 8831, 'at his': 866, 'them the': 8358, 'who live': 9646, 'perform is': 6174, 'most of': 5279, 'br just': 1365, 'in these': 4010, 'it worth': 4508, 'consid the': 1936, 'an old': 370, 'most of the': 5281, 'br br just': 1310, 'imag': 3874, 'hip': 3684, 'arrang': 759, 'lie': 4784, 'of music': 5736, 'music and': 5422, 'and music': 499, 'claim to': 1807, 'as that': 815, 'film ever': 2821, 'made and': 4970, 'what it is': 9539, 'film ever made': 2822, 'folk': 2954, 'sit': 7086, 'noir': 5545, 'genre': 3170, 'city': 1802, 'sophist': 7222, 'elev': 2452, 'ends': 2493, 'difficult': 2214, 'copi': 1968, 'stock': 7344, 'manhattan': 5045, 'rough': 6701, 'cabl': 1581, 'channel': 1710, 'belong': 1124, 'draw': 2361, 'detect': 2165, 'dixon': 2263, 'closer': 1828, 'threaten': 8650, 'familiar': 2712, 'andrew': 627, 'bleak': 1205, 'troubl': 9048, 'yeah': 9885, 'suspect': 7477, 'warn': 9304, 'stop': 7350, 'tough': 8996, 'boss': 1245, 'complaint': 1904, 'hook': 3749, 'advic': 176, 'hands': 3410, 'generat': 3166, 'partner': 6125, 'nowher': 5644, 'virtual': 9258, 'unexpect': 9119, 'polish': 6287, 'date': 2080, 'parodi': 6111, 'notch': 5618, 'consider': 1937, 'heaven': 3583, 'grow': 3351, 'innoc': 4058, 'says': 6780, 'fals': 2708, 'wild': 9681, 'shift': 6997, 'punch': 6424, 'realist': 6510, 'dub': 2382, 'model': 5232, 'mysteri': 5451, 'scienc': 6818, 'heck': 3587, 'terrif': 7564, 'not alway': 5562, 'to mind': 8850, 'such thing': 7431, 'talk about': 7516, 'film noir': 2850, 'best film': 1137, 'the genre': 7935, 'the past': 8111, 'past the': 6131, 'the city': 7808, 'level of': 4779, 'difficult to': 2215, 'perhap the': 6180, 'video store': 9239, 'with these': 9750, 'br from': 1353, 'the black': 7767, 'too long': 8978, 'long and': 4892, 'much to': 5413, 'to stop': 8910, 'now and': 5639, 'have it': 3485, 'but instead': 1501, 'he take': 3562, 'he find': 3533, 'reli on': 6582, 'back on': 949, 'his job': 3703, 'make him': 5006, 'is simpli': 4264, 'to bring': 8750, 'what he': 9535, 'is br': 4159, 'br when': 1407, 'to turn': 8936, 'discov that': 2248, 'relationship with': 6574, 'seem as': 6884, 'as if': 787, 'home to': 3741, 'the pace': 8107, 'the group': 7946, 'the dialogu': 7837, 'dialogu is': 2181, 'top notch': 8985, 'is use': 4300, 'be an': 1008, 'an actress': 342, 'is as': 4144, 'is her': 4199, 'scene between': 6789, 'he seem': 3558, 'peopl can': 6148, 'get into': 3185, 'move and': 5294, 'you in': 9940, 'your head': 9986, 'the sens': 8196, 'could go': 1985, 'is tri': 4296, 'so hard': 7133, 'the wind': 8316, 'has alway': 3435, 'br one': 1376, 'of an': 5679, 'of place': 5748, 'ani movi': 635, 'the best film': 7758, 'br br from': 1302, 'that make you': 7652, 'not have been': 5585, 'is br br': 4160, 'br br when': 1339, 'that he has': 7628, 'the dialogu is': 7838, 'to be an': 8736, 'he seem to': 3559, 'near the end': 5475, 'make this film': 5023, 'br br one': 1321, 'out of place': 6050, 'wit': 9714, 'ahead': 219, 'street': 7381, 'jimmi': 4545, 'code': 1837, 'strict': 7386, 'pace and': 6088, 'put this': 6441, 'ahead of': 220, 'motion pictur': 5288, 'of the last': 5779, 'refer': 6558, 'pathetic': 6135, 'bother': 1249, 'spot': 7279, 'avoid': 919, 'overlook': 6082, 'occur': 5671, 'let down': 4773, 'make ani': 4999, 'don bother': 2307, 'have read': 3499, 'the review': 8165, 'show and': 7024, 'and becom': 397, 'the militari': 8039, 'in ani': 3902, 'ani way': 640, 'almost as': 292, 'the thing': 8250, 'as you': 833, 'you might': 9951, 'might have': 5194, 'not at': 5565, 'avoid this': 920, 'unless you': 9136, 'my interest': 5442, 'at first': 864, 'it on the': 4436, 'want to watch': 9299, 'in ani way': 3903, 'of the thing': 5795, 'popul': 6293, 'grade': 3309, 'husband': 3822, 'kick': 4627, 'back and': 942, 'plot but': 6258, 'rememb that': 6592, 'enjoy it': 2504, 'good idea': 3277, 'idea and': 3829, 'actor and': 135, 'are lot': 718, 'is there': 4290, 'there noth': 8403, 'look and': 4896, 'the girl': 7938, 'one scene': 5943, 'her life': 3616, 'him in': 3671, 'that but': 7602, 'it alway': 4333, 'time or': 8692, 'or two': 5999, 'but there are': 1534, 'there are lot': 8381, 'are lot of': 719, 'him in the': 3672, 'awaken': 922, 'social': 7162, 'vietnam': 9240, 'sexual': 6957, 'news': 5511, 'equal': 2535, 'dedic': 2113, 'century': 1694, 'footag': 2963, 'documentari': 2284, 'fiction': 2789, 'clip': 1823, 'situat': 7091, 'storylin': 7373, 'time of': 8690, 'about their': 74, 'were all': 9511, 'attempt to': 898, 'an entertain': 356, 'and famili': 431, 'unfortunately the': 9125, 'the second': 8193, 'second half': 6852, 'the white': 8308, 'charact in': 1720, 'given to': 3226, 'done and': 2331, 'black and': 1196, 'and white': 609, 'feel to': 2771, 'work of': 9806, 'to set': 8898, 'movi but': 5305, 'the situat': 8206, 'predict and': 6329, 'the storylin': 8233, 'was one': 9360, 'the second half': 8194, 'charact in this': 1722, 'the stori line': 8229, 'black and white': 1197, '1st': 28, 'un': 9099, 'spectacular': 7251, 'thru': 8670, 'etc': 2552, 'fare': 2734, 'sequel to': 6919, 'yes the': 9902, 'first one': 2920, 'one but': 5918, 'play out': 6246, 'which this': 9613, 'doesn have': 2295, 'have the': 3509, 'also veri': 310, 'we get': 9463, 'of stori': 5758, 'all over': 263, 'etc etc': 2553, 'when we': 9572, 'buy this': 1562, 'put out': 6439, 'in the first': 3983, 'the first one': 7916, 'the problem is': 8145, 'of the great': 5777, 'thing about the': 8474, 'of the story': 5794, 'prison': 6368, 'busi': 1469, 'homeless': 3742, 'clock': 1824, 'cure': 2051, 'determin': 2166, 'glenn': 3229, 'repeat': 6608, 'previous': 6356, 'ken': 4623, 'and set': 537, 'set out': 6943, 'in life': 3931, 'thing are': 8477, 'are go': 709, 'the street': 8234, 'her role': 3620, 'onc again': 5909, 'everi scene': 2591, 'watch in': 9417, 'the previous': 8143, 'story br': 7368, 'story br br': 7369, 'terrible': 7563, '17': 17, 'screw': 6836, 'you haven': 9938, 'is pure': 4254, 'ago and': 215, 'and still': 549, 'from it': 3097, 'if you haven': 3862, 'you haven seen': 9939, 'year ago and': 9889, 'witty': 9768, 'entertaining': 2522, 'creator': 2025, 'ideas': 3834, 'comparison': 1898, 'beginning': 1104, 'brain': 1414, 'annoy': 649, 'alone': 297, 'swing': 7486, 'crew': 2034, 'qualiti': 6445, 'loos': 4909, 'jame': 4523, 'opinion': 5976, 'disappointment': 2242, 'quickly': 6454, 'accept': 97, 'horror flick': 3765, 'lord of': 4911, 'is certain': 4165, 'certain not': 1696, 'no more': 5534, 'at time': 886, 'it quit': 4447, 'in comparison': 3911, 'br spoiler': 1383, 'the beginning': 7756, 'the secret': 8195, 'the mysteri': 8072, 'the brain': 7775, 'kid who': 4631, 'be great': 1020, 'film also': 2803, 'also has': 307, 'has it': 3444, 'lot more': 4924, 'film make': 2847, 'is play': 4247, 'he had': 3537, 'in part': 3958, 'my opinion': 5445, 'doesn make': 2297, 'the gore': 7940, 'becaus the': 1067, 'up for': 9152, 'the lack': 7990, 'after the first': 195, 'lord of the': 4912, 'of the dead': 5771, 'br br spoiler': 1326, 'the film also': 7893, 'in my opinion': 3945, 'make up for': 5026, 'up for the': 9153, 'the lack of': 7991, 'fan of the': 2719, 'of the first': 5775, 'weren': 9520, 'brando': 1417, 'damon': 2066, 'ironi': 4126, 'surprise': 7471, 'fill': 2800, 'proceed': 6382, 'term': 7560, 'advanc': 171, 'shoe': 7003, 'hadn': 3392, 'danc': 2068, 'whenev': 9574, 'cash': 1665, 'drew': 2369, 'sequence': 6922, 'sets': 6946, 'photography': 6199, 'stuff': 7401, 'doll': 2304, 'bound': 1256, 'cute': 2057, 'girls': 3210, 'regard': 6565, 'mi': 5182, 'major': 4995, 'bet': 1148, 'wait': 9273, 'change': 1709, 'someone': 7197, 'sudden': 7435, 'convey': 1960, 'cross': 2040, 'not quit': 5598, 'be there': 1041, 'realli good': 6521, 'good one': 3284, 'use the': 9186, 'the right': 8166, 'great but': 3324, 'just didn': 4586, 'didn have': 2199, 'the power': 8139, 'found the': 3063, 'fill with': 2801, 'happen when': 3420, 'and later': 479, 'introduc to': 4109, 'to pull': 8871, 'on him': 5876, 'came to': 1593, 'other hand': 6018, 'never heard': 5503, 'but who': 1551, 'just seem': 4599, 'down the': 2349, 'her and': 3601, 'in term': 3970, 'term of': 7561, 'on top': 5899, 'there for': 8389, 'the stage': 8221, 'the guy': 7948, 'guy who': 3374, 'return to': 6635, 'were some': 9516, 'some good': 7172, 'particular the': 6124, 'do that': 2272, 'that great': 7621, 'song and': 7217, 'it remind': 4450, 'remind me': 6596, 'me of': 5120, 'the number': 8083, 'to point': 8865, 'not like': 5591, 'the art': 7736, 'attent to': 901, 'the town': 8265, 'stori in': 7355, 'had to': 3391, 'shot in': 7011, 'guy and': 3370, 'cute and': 2058, 'realli have': 6522, 'much better': 5399, 'interest in': 4091, 'br mi': 1368, 'know if': 4661, 'if this': 3854, 'but when': 1550, 'made with': 4983, 'she just': 6986, 'off to': 5842, 'ad to': 152, 'have that': 3508, 'wait for': 9274, 'way to': 9452, 'to convey': 8762, 'over to': 6077, 'to each': 8778, 'moment of': 5240, 'had lot': 3383, 'go for': 3240, 'as it was': 795, 'in the role': 3996, 'was the onli': 9386, 'on the other': 5892, 'the other hand': 8104, 'never heard of': 5504, 'in term of': 3971, 'on top of': 5900, 'the guy who': 7949, 'there were some': 8412, 'it remind me': 4451, 'remind me of': 6597, 'by the time': 1576, 'we get to': 9464, 'much better than': 5400, 'br br mi': 1313, 'don know if': 2315, 'if this is': 3855, 'it seem to': 4457, 'to each other': 8779, 'go for it': 3241, 'spike': 7260, 'host': 3772, 'colour': 1844, 'humour': 3816, 'toilet': 8962, 'oper': 5974, 'babi': 939, 'shadow': 6961, 'foster': 3055, 'planet': 6236, 'earth': 2410, 'stolen': 7346, 'surround': 7473, 'jone': 4564, 'remot': 6600, 'clue': 1832, 'prior': 6366, 'award': 925, 'guilt': 3364, 'are some': 733, 'of other': 5744, 'then there': 8369, 'had an': 3379, 'show in': 7026, 'peopl are': 6147, 'set of': 6942, 'sex with': 6955, 'far too': 2733, 'as to': 824, 'prior to': 6367, 'movi when': 5361, 'they get': 8439, 'there are some': 8385, 'clever': 1815, 'development': 2172, 'business': 1470, 'insult': 4077, 'critic': 2039, 'desir': 2154, 'bash': 995, 'satisfi': 6753, 'mindless': 5207, 'premise': 6336, 'messag': 5173, 'spirit': 7262, 'script and': 6838, 'it this': 4474, 'is all': 4135, 'all you': 285, 'these guy': 8420, 'check out': 1754, 'work with': 9812, 'with them': 9749, 'them is': 8357, 'thing you': 8484, 'do in': 2266, 'word of': 9795, 'all that': 265, 'view of': 9242, 'mean to': 5134, 'let the': 4776, 'expect it': 2645, 'just becaus': 4584, 'that doesn': 7612, 'mind and': 5205, 'for this film': 3018, 'party': 6127, 'type': 9091, 'laughs': 4720, 'parti': 6121, 'pie': 6208, 'defeat': 2117, 'hole': 3733, 'purpos': 6429, 'nudity': 5651, 'glad': 3227, 'silli': 7058, 'looking': 4908, 'ron': 6696, 'weekend': 9484, 'marriage': 5070, 'guys': 3376, 'likable': 4805, 'likabl': 4804, 'wanna': 9288, 'tear': 7534, 'type of': 9092, 'of movies': 5734, 'the sequel': 8197, 'hope it': 3753, 'the american': 7733, 'purpos of': 6430, 'everi singl': 2592, 'is exact': 4176, 'exact the': 2613, 'with me': 9734, 'this could': 8514, 'onli thing': 5964, 'thing is': 8479, 'appear in': 688, 'everyon is': 2599, 'go out': 3245, 'out on': 6053, 'he ll': 3546, 'here and': 3627, 'there but': 8388, 'funny the': 3137, 'more or': 5268, 'or less': 5990, 'get on': 3191, 'on your': 5907, 'film just': 2841, 'stick to': 7335, 'br 10': 1265, 'to watch the': 8945, 'to see the': 8894, 'the first film': 7912, 'but it doesn': 1504, 'the onli thing': 8094, 'here and there': 3628, 'more or less': 5269, 'watch this film': 9429, 'that the movi': 7685, 'the movi that': 8058, 'br br 10': 1280, 'spock': 7270, 'themselv': 8362, 'ice': 3826, 'kirk': 4650, 'pair': 6097, 'third': 8504, 'sexi': 6956, 'hartley': 3433, 'spend': 7255, 'attract': 904, 'grasp': 3316, 'reality': 6513, 'captain': 1641, 'wolf': 9770, 'send': 6908, 'trio': 9043, 'find themselv': 2903, 'however it': 3803, 'the former': 7924, 'more time': 5271, 'the few': 7890, 'time when': 8701, 'play it': 6244, 'one br': 5916, 'respons for': 6622, 'is in the': 4205, 'in the same': 3997, 'as one of': 803, 'of the few': 5773, 'it to the': 4478, 'to get the': 8802, 'one br br': 5917, 'modern': 5233, 'category': 1678, 'caus': 1684, 'harder': 3429, 'risk': 6665, 'awe': 933, 'terrifi': 7565, 'simple': 7066, 'jami': 4524, 'mental': 5165, 'brutal': 1449, 'course': 2005, 'slasher': 7104, 'frequent': 3081, 'splatter': 7267, '1970': 23, 'father': 2744, 'downright': 2352, 'teen': 7540, 'fest': 2781, 'argu': 749, 'carpent': 1657, 'scary': 6784, 'sadist': 6727, 'mistake': 5226, 'creativ': 2024, 'elements': 2450, 'order': 6002, 'twice': 9079, 'lesser': 4769, 'years': 9897, 'shape': 6968, 'why': 9674, 'freedom': 3078, 'advantag': 172, 'recogn': 6542, 'potential': 6315, 'purpose': 6431, 'immens': 3881, 'horror movi': 3766, 'into this': 4106, 'br then': 1391, 'those movi': 8627, 'that don': 7613, 'the tension': 8246, 'you never': 9955, 'would make': 9852, 'as whole': 831, 'of course': 5692, 'course the': 2006, 'kill the': 4640, 'and eventu': 427, 'he come': 3527, 'just anoth': 4580, 'br think': 1396, 'review of': 6642, 'togeth with': 8960, 'with all': 9716, 'the father': 7886, 'the modern': 8041, 'br he': 1356, 'and for': 437, 'one could': 5921, 'that mani': 7653, 'but most': 1512, 'is almost': 4136, 'almost no': 294, 'veri littl': 9213, 'this isn': 8552, 'isn realli': 4319, 'horror movie': 3767, 'of have': 5703, 'thing that': 8481, 'reason whi': 6536, 'is hard': 4195, 'film there': 2867, 'there no': 8401, 'save the': 6757, 'the open': 8095, 'in place': 3960, 'place and': 6224, 'and say': 534, 'the feel': 7887, 'that we': 7704, 'movi are': 5301, 'in order': 3954, 'for someth': 3004, 'someth to': 7205, 'is whi': 4309, 'idea that': 3831, 'the years': 8335, 'is movi': 4220, 'characters the': 1738, 'act like': 119, 'noth more': 5627, 'the except': 7876, 'it can': 4353, 'pull off': 6422, 'off and': 5833, 'to keep': 8824, 'pull it': 6421, 'result is': 6629, 'through and': 8657, 'as this': 822, 'the famous': 7884, 'open scene': 5971, 'work for': 9803, 'it bad': 4340, 'just that': 4601, 'good reason': 3286, 'reason to': 6535, 'use this': 9187, 'set up': 6945, 'relationship between': 6573, 'fit the': 2930, 'know the': 4664, 'characters but': 1737, 'not so': 5603, 'much that': 5410, 'onc the': 5911, 'it never': 4428, 'end br': 2475, 'br while': 1408, 'and must': 500, 'for anyon': 2972, 'who love': 9648, 'movi will': 5364, 'br br then': 1328, 'is on the': 4240, 'of course the': 5693, 'br br think': 1331, 'becaus of it': 1063, 'with all the': 9717, 'all the other': 270, 'br br he': 1305, 'of the charact': 5768, 'think that the': 8497, 'br one of': 1377, 'of the main': 5780, 'becaus it is': 1060, 'it is so': 4404, 'to believ that': 8748, 'is hard to': 4196, 'need to be': 5486, 'this is movi': 8546, 'it can be': 4354, 'the result is': 8164, 'br this is': 1399, 'the movie it': 8066, 'charact and the': 1714, 'get to the': 3200, 'to the end': 8916, 'the end br': 7861, 'end br br': 2476, 'br br while': 1340, 'it is an': 4399, 'this movi will': 8577, 'picture': 6206, 'desert': 2149, 'immedi': 3880, 'stalk': 7286, 'craig': 2014, 'mickey': 5185, 'protect': 6406, 'meanwhile': 5140, 'logic': 4888, 'baker': 977, 'hall': 3400, 'an aw': 352, 'script that': 6840, 'is both': 4158, 'after be': 188, 'is suppos': 4273, 'there to': 8407, 'to protect': 8869, 'good guy': 3276, 'might be': 5193, 'the wonder': 8320, 'be disappointed': 1015, 'part is': 6116, 'if you think': 3865, 'you will be': 9973, 'disc': 2246, 'necessarili': 5478, 'depend': 2137, 'forgiv': 3043, 'alan': 229, 'unrealist': 9140, 'obviously': 5668, 'gratuit': 3318, 'adult': 169, 'language': 4700, 'swear': 7482, 'actors': 146, 'on dvd': 5871, 'dvd and': 2398, 'have ani': 3469, 'or even': 5985, 'movi on': 5342, 'depend on': 2138, 'that said': 7670, 'seen br': 6894, 'the major': 8021, 'come across': 1851, 'across as': 112, 'but have': 1489, 'peopl with': 6160, 'as her': 785, 'pick up': 6203, 'come out': 1860, 'sex and': 6953, 'who can': 9630, 'br also': 1269, 'but that is': 1527, 'that is not': 7639, 'seen br br': 6895, 'come across as': 1852, 'br br also': 1283, 'chines': 1772, 'underground': 9108, 'current': 2053, 'cultur': 2048, 'you go': 9933, 'high recommend': 3654, 'one thing': 5946, 'this movi has': 8570, 'transfer': 9014, 'lincoln': 4838, 'henri': 3599, 'trial': 9038, 'spark': 7242, 'through this': 8661, 'was like': 9347, 'second time': 6853, 'it simpli': 4462, 'br if': 1358, 'scene which': 6807, 'well act': 9488, 'and such': 552, 'it lack': 4413, 'than this': 7582, 'it was like': 4491, 'br br if': 1307, 'br if you': 1359, 'if you can': 3858, 'you can get': 9919, 'the end is': 7862, 'melodrama': 5151, 'bergman': 1130, 'presenc': 6339, 'fans': 2721, 'asleep': 841, 'whom': 9671, 'save this': 6758, 'slow and': 7113, 'to sit': 8901, 'sit through': 7088, 'fast forward': 2739, 'die hard': 2206, 'to fall': 8787, 'the worst film': 8328, 'to sit through': 8902, 'thrill': 8653, 'crush': 2045, 'thief': 8471, 'extend': 2668, 'metaphor': 5177, 'free': 3077, 'wreck': 9865, 'accus': 109, 'ultim': 9097, 'sorry': 7226, 'the sort': 8213, 'of thing': 5807, 'that onli': 7666, 'after all': 187, 'have you': 3519, 'don watch': 2328, 'it might': 4423, 'here the': 3639, 'noth new': 5629, 'we all': 9456, 'br so': 1381, 'all his': 251, 'up his': 9154, 'and ultim': 594, 'make his': 5007, 'this to': 8609, 'might have been': 5195, 'br br so': 1324, '20th': 39, 'centuri': 1693, 'fox': 3067, 'ingredi': 4053, 'essenc': 2548, 'stress': 7384, 'circumst': 1798, 'stan': 7287, 'univers': 9133, 'appeal': 684, 'delight': 2126, 'slapstick': 7103, 'not be': 5567, 'far from': 2730, 'from be': 3093, 'work as': 9798, 'has all': 3434, 'the basic': 7750, 'make them': 5021, 'as other': 804, 'work and': 9797, 'film they': 2868, 'would get': 9843, 'come in': 1855, 'in to': 4018, 'it but': 4349, 'but never': 1513, 'point of': 6274, 'of be': 5684, 'this make': 8558, 'make us': 5027, 'becaus we': 1071, 'relat to': 6571, 'to their': 8924, 'all those': 278, 'present in': 6341, 'their best': 8343, 'becaus this': 1070, 'they did': 8433, 'becaus he': 1058, 'and go': 445, 'go into': 3243, 'up and': 9145, 'they should': 8456, 'have all': 3466, 'togeth and': 8958, 'this as': 8507, 'may not be': 5103, 'and that is': 556, 'that is the': 7640, 'to the point': 8921, 'the point of': 8132, 'this was the': 8616, 'he want to': 3567, 'they should have': 8457, 'cathol': 1680, 'church': 1788, 'sin': 7070, 'individu': 4043, 'often': 5850, 'deni': 2132, 'wander': 9287, 'combin': 1848, 'religi': 6584, 'anti': 658, 'spiritu': 7264, 'alex': 235, 'priest': 6359, 'demon': 2130, 'peter': 6191, 'princip': 6364, 'knight': 4655, 'burst': 1465, 'display': 2255, 'notabl': 5617, 'rule': 6709, 'forth': 3051, 'narrat': 5460, 'structur': 7393, 'clear': 1813, 'blatant': 1204, 'dri': 2370, 'explained': 2659, 'ear': 2404, '80': 52, 'subtl': 7421, 'organ': 6005, 'torn': 8989, 'lisa': 4850, 'remain': 6586, 'watchable': 9433, 'angri': 631, 'function': 3127, 'sheer': 6993, 'prevent': 6354, 'day of': 2089, 'these peopl': 8421, 'the church': 7803, 'would not': 9854, 'seen as': 6893, 'it may': 4421, 'an odd': 369, 'to one': 8857, 'who work': 9662, 'and half': 451, 'one and': 5914, 'or the': 5997, 'that most': 7657, 'scene of': 6798, 'and forth': 438, 'one with': 5951, 'with each': 9721, 'appear to': 691, 'scene at': 6788, 'until the': 9142, 'veri end': 9206, 'in time': 4017, 'both of': 1247, 'this with': 8620, 'combin of': 1849, 'veri nice': 9216, 'in veri': 4020, 'and sometim': 545, 'but for': 1488, 'reason the': 6534, 'peopl will': 6159, 'turn off': 9066, 'off by': 5837, 'it still': 4466, 'still the': 7340, 'onli for': 5957, 'for peopl': 2999, 'who like': 9645, 'while they': 9622, 'and you have': 622, 'to be the': 8742, 'with the same': 9747, 'want to be': 9292, 'of the actor': 5763, 'br the plot': 1389, 'back and forth': 943, 'appear to be': 692, 'the veri end': 8287, 'end of the': 2482, 'at the begin': 877, 'the movi for': 8054, 'error': 2539, 'buff': 1454, 'in your': 4029, 'will enjoy': 9684, 'never been': 5500, 'prove': 6408, 'darker': 2078, 'thought that': 8643, 'so whi': 7158, 'whi not': 9596, 'is perfect': 4245, 'my favorit': 5436, 'actor in': 138, 'this veri': 8612, 'veri interest': 9212, 'of hollywood': 5710, 'it was one': 4494, 'was one of': 9361, 'of my favorit': 5738, 'watch the movi': 9425, 'element': 2448, 'stories': 7364, 'chaplin': 1711, 'baby': 940, 'readi': 6500, '1930s': 20, 'weird': 9486, 'birthday': 1187, 'killer': 4643, 'was good': 9340, 'element of': 2449, 'romant comedi': 6693, 'good in': 3278, 'in anoth': 3904, 'didn even': 2197, 'you seen': 9961, 'or mayb': 5991, 'readi to': 6501, 'to move': 8851, 'the killer': 7986, '2007': 38, 'adam': 153, 'sandler': 6746, 'sutherland': 7481, 'allen': 286, 'affect': 180, 'thorough': 8624, '11': 11, 'unit': 9132, 'colleg': 1842, 'genuin': 3172, 'week': 9483, 'lost his': 4919, 'his famili': 3694, 'to date': 8766, 'well to': 9503, 'but realli': 1522, 'see an': 6858, 'star as': 7297, 'humor and': 3815, 'fall into': 2706, 'an almost': 346, 'seem to have': 6890, 'signific': 7055, 'endless': 2492, 'smoke': 7121, 'particip': 6122, 'ani film': 632, 'see her': 6861, 'as much': 800, 'much as': 5398, 'to like': 8833, 'agre with': 218, 'with mani': 9733, 'mani other': 5049, 'confus and': 1927, 'has veri': 3458, 'sit in': 7087, 'way the': 9448, 'even have': 2564, 'idea what': 3832, 'was go': 9338, 'on br': 5868, 'similar to': 7063, 'film but': 2813, 'but was': 1547, 'she doesn': 6979, 'have done': 3476, 'sex scene': 6954, 'as they': 820, 'without ani': 9763, 'you could': 9922, 'hope to': 3755, 'as much as': 801, 'like this movie': 4828, 'it it is': 4410, 'it is veri': 4407, 'to have been': 8811, 'the way the': 8303, 'on br br': 5869, 'could have done': 1988, 'angel': 628, 'sent': 6914, 'amus': 337, 'apart from': 678, 'some sort': 7187, 'sent to': 6915, 'to earth': 8780, 'to save': 8881, 'boy and': 1261, 'but even': 1486, 'will not': 9691, 'some sort of': 7188, 'will not be': 9692, 'unfunni': 9126, 'gag': 3142, 'fbi': 2754, 'destroy': 2161, 'trace': 9004, 'duti': 2396, 'settl': 6948, 'jokes': 4562, 'chris': 1781, 'torture': 8991, 'mafia': 4985, 'awkward': 937, 'plenti': 6255, 'forgett': 3042, 'screenwrit': 6835, 'comed': 1866, 'falk': 2701, 'whi is': 9594, 'annoy and': 650, 'then this': 8372, 'at best': 863, 'best and': 1136, 'would say': 9857, 'life is': 4794, 'to destroy': 8771, 'isn that': 4320, 'him with': 3678, 'are there': 738, 'both the': 1248, 'again br': 203, 'lead actor': 4732, '10 minut': 6, 'is okay': 4238, 'off of': 5840, 'have made': 3488, 'differ between': 2211, 'it down': 4368, 'down and': 2347, 'way of': 9445, 'to hear': 8813, 'hear the': 3576, 'origin and': 6007, 'plenti of': 6256, 'time you': 8703, 'of fun': 5700, 'write this': 9870, 'even with': 2576, 'the joke': 7982, 'the actors': 7726, 'it or': 4440, 'tri to do': 9034, 'but it realli': 1507, 'end up in': 2487, 'down to the': 2351, 'again br br': 204, 'into the film': 4105, 'film it is': 2840, 'out of it': 6049, 'it seem as': 4454, 'as if the': 789, 'latest': 4711, 'react': 6493, 'accord': 104, 'voice': 9267, 'exploit': 2663, 'max': 5097, 'value': 9195, 'portrait': 6298, 'genius': 3168, 'someon els': 7195, 'accord to': 105, 'wonder how': 9783, 'about how': 69, 'was there': 9387, 'was total': 9391, 'way it': 9444, 'made me': 4977, 'if that': 3848, 'how the': 3794, 'portrait of': 6299, 'accord to the': 106, 'this movi that': 8574, 'it made me': 4419, 'that was the': 7701, '90': 54, 'modesti': 5235, 'excellent': 2624, 'willi': 9697, 'it by': 4350, 'on film': 5873, 'the character': 7799, 'direct is': 2226, 'cast was': 1672, 'the seri': 8198, 'the cast was': 7787, 'veri well done': 9220, 'drop': 2376, 'cage': 1582, 'sceneri': 6809, 'island': 4316, 'holes': 3734, 'but just': 1509, 'to anyon': 8729, 'movi seen': 5347, 'this year': 8622, 'the sceneri': 8185, 'the island': 7979, 'other charact': 6016, 'beyond me': 1171, 'me br': 5111, 'mention that': 5167, 'is full': 4185, 'to fill': 8792, 'read this': 6498, 'and think': 579, 'film should': 2861, 'not go': 5580, 'go see': 3246, 'to anyon who': 8730, 'is the worst': 4289, 'the worst movi': 8329, 'me br br': 5112, 'is full of': 4186, 'ex': 2611, 'via': 9230, 'lake': 4694, 'bunch': 1461, 'amateur': 323, 'smash': 7118, 'open with': 5973, 'and end': 421, 'just as': 4581, 'that br': 7600, 'or something': 5995, 'and she': 538, 'guess it': 3359, 'of murder': 5735, 'bunch of': 1462, 'and lot': 487, 'all veri': 283, 'that br br': 7601, 'and lot of': 488, 'hours': 3779, 'layer': 4728, 'east': 2415, 'english': 2500, 'shame': 6966, 'film doe': 2818, 'doe the': 2291, 'done by': 2332, 'an enjoy': 355, 'you look': 9947, 'don realli': 2320, 'feel good': 2764, 'script is': 6839, 'all it': 255, 'the script is': 8191, 'be one of': 1031, 'in all it': 3896, 'salli': 6737, 'field': 2790, 'soap': 7160, 'wall': 9285, 'beat': 1050, 'television': 7544, 'it veri': 4486, 'it well': 4500, 'well written': 9506, 'watch them': 9427, 'them but': 8354, 'film becaus': 2810, 'the wall': 8296, 'the hell': 7955, 'of ani': 5681, 'unfair': 9120, 'file': 2799, 'addict': 159, 'struck': 7392, 'bi': 1173, 'accid': 99, 'privat': 6369, 'sh': 6959, 'hi': 3649, 'detract': 2167, 'his name': 3710, 'he becom': 3525, 'howev the': 3800, 'support role': 7457, 'as mani': 799, 'would think': 9858, 'his perform': 3713, 'is present': 4250, 'from the film': 3106, 'cowboy': 2010, 'hoffman': 3731, 'daniel': 2073, 'lewi': 4781, 'butcher': 1556, 'levels': 4780, 'buck': 1450, 'naiv': 5454, 'float': 2946, 'teach': 7531, 'gritti': 3346, 'message': 5174, 'insight': 4064, 'escape': 2542, 'portray of': 6302, 'of new': 5740, 'new york': 5510, 'best actor': 1135, 'the histori': 7960, 'histori of': 3724, 'of film': 5699, 'film at': 2809, 'way that': 9447, 'how to': 3797, 'turn into': 9063, 'find yourself': 2905, 'that as': 7596, 'movi as': 5302, 'no matter': 5531, 'matter how': 5091, 'how much': 3792, 'can find': 1607, 'few year': 2786, 'think is': 8489, 'more like': 5265, 'actor in the': 139, 'the histori of': 7961, 'no matter how': 5532, 'you can find': 9918, 'can help but': 1613, 'once': 5913, 'fulli': 3121, 'inner': 4057, 'led': 4752, 'go back': 3237, 'person who': 6185, 'them in': 8355, 'us that': 9175, 'order to': 6003, 'not just': 5589, 'no wonder': 5542, 'my first': 5438, 'are never': 723, 'go back to': 3238, 'them in the': 8356, 'br this film': 1398, 'in order to': 3955, 'to this film': 8930, 'he is not': 3541, 'convict': 1961, 'comput': 1910, 'devic': 2173, 'campi': 1600, 'christoph': 1786, 'one man': 5930, 'at night': 872, 'he also': 3523, 'is not onli': 4230, 'split': 7269, 'divorc': 2262, 'disaster': 2244, 'sympathet': 7490, 'monster': 5249, 'adults': 170, 'hint': 3682, 'overact': 6078, 'terror': 7566, 'plan to': 6234, 'hint of': 3683, 'recommend this film': 6547, 'contemporari': 1944, 'dancer': 2070, 'important': 3885, 'examin': 2616, 'and alway': 385, 'way he': 9442, 'drama and': 2359, 'an even': 359, 'even better': 2561, 'experi of': 2652, 'one more': 5932, 'mayb the': 5106, 'that whi': 7708, 'recommend it': 6544, 'to those': 8931, 'the way he': 8300, 'to those who': 8932, 'damag': 2064, 'garner': 3153, 'market': 5066, 'notori': 5636, 'appropri': 698, 'eastwood': 2416, 'gold': 3260, 'lock': 4887, 'key': 4626, 'transport': 9018, 'regular': 6568, 'protagonist': 6405, 'method': 5178, 'break': 1420, 'gut': 3368, 'italian': 4513, 'thirti': 8505, 'credits': 2030, 'any': 660, 'been done': 1081, 'do so': 2270, 'whole lot': 9667, 'of american': 5678, 'cast as': 1668, 'good at': 3269, 'done it': 2334, 'well in': 9496, 'in film': 3918, 'hour and': 3776, 'his usual': 3717, 'his head': 3702, 'kill in': 4639, 'as though': 823, 'get his': 3183, 'film show': 2862, 'show the': 7031, 'the protagonist': 8149, 'the case': 7783, 'some other': 7181, 'to break': 8749, 'br that': 1384, 'just too': 4604, 'was this': 9388, 'will say': 9694, 'for those': 3021, 'blood and': 1213, 'that not': 7663, 'cours the': 2004, 'out and': 6033, 'by that': 1573, 'whole film': 9666, 'the life': 8002, 'better br': 1153, 'in on the': 3951, 'this film br': 8522, 'in this one': 4015, 'br br that': 1327, 'should have been': 7019, 'for those who': 3022, 'of cours the': 5691, 'the whole film': 8310, 'the life of': 8003, 'better br br': 1154, 'forev': 3038, 'personally': 6188, 'tremend': 9029, 'outrag': 6063, 'dude': 2383, 'walken': 9284, 'guilti': 3365, 'intellectu': 4080, 'country': 1997, 'seriously': 6933, 'non': 5549, 'clichéd': 1818, 'situations': 7093, 'nonsens': 5554, 'twists': 9083, 'sentiment': 6916, 'pow': 6317, 'symbol': 7489, 'rebel': 6538, 'revolut': 6644, 'corrupt': 1977, 'presid': 6342, 'execut': 2636, 'financi': 2894, 'assist': 849, 'miser': 5220, 'plane': 6235, 'fool': 2961, 'user': 9190, 'compos': 1909, 'add': 156, 'heroic': 3643, 'goal': 3253, 'mission': 5224, '100': 10, 'coher': 1838, 'nation': 5463, 'leads': 4737, 'soundtrack': 7232, 'joan': 4546, 'name is': 5457, 'titl of': 8717, 'entertain and': 2520, 'becaus there': 1068, 'no way': 5541, 'an entir': 357, 'and yet': 619, 'action sequenc': 132, 'take over': 7505, 'his sister': 3715, 'travel to': 9022, 'to new': 8853, 'and turn': 592, 'turn to': 9070, 'you read': 9957, 'of interest': 5715, 'stupid and': 7406, 'can onli': 1617, 'who doesn': 9633, 'to expect': 8785, 'we know': 9468, 'this will': 8619, 'silli and': 7059, 'to check': 8759, 'check it': 1752, 'the nation': 8076, 'pleas don': 6251, 'don expect': 2310, 'this particular': 8591, 'perform of': 6175, 'two of the': 9088, 'up with the': 9166, 'check it out': 1753, '60s': 49, 'ridiculous': 6654, 'march': 5061, 'teacher': 7532, 'experience': 2654, 'link': 4847, 'print': 6365, 'correct': 1976, 'size': 7095, 'restor': 6626, 'thousand': 8647, 'intent': 4087, 'wake': 9278, 'inde': 4036, 'astonish': 855, '80s': 53, 'insist': 4065, 'everything': 2607, 'hippi': 3685, 'insid': 4061, 'construct': 1941, 'environment': 2529, 'glimps': 3230, 'newspap': 5512, 'photo': 6196, 'alic': 237, 'and found': 439, 'and too': 588, 'and let': 482, 'it now': 4432, 'now the': 5643, 'on and': 5866, 'film about': 2802, 'ten year': 7554, 'year and': 9890, 'an absolut': 339, 'by an': 1564, 'who know': 9644, 'of art': 5682, 'shot of': 7012, 'of death': 5695, 'point is': 6273, 'br what': 1406, 'me is': 5117, 'is how': 4202, 'come into': 1856, 'into it': 4103, 'film as': 2808, 'these two': 8422, 'girl in': 3206, 'her br': 3605, 'began to': 1098, 'let it': 4774, 'me the': 5122, 'doe it': 2289, 'you and': 9910, 'it way': 4499, 'br was': 1402, 'movi had': 5316, 'seen on': 6898, 'you into': 9941, 'glimps of': 3231, 'mayb it': 5105, 'as with': 832, 'when it was': 9564, 'br br what': 1338, 'the film as': 7896, 'her br br': 3606, 'br br was': 1334, 'to see that': 8893, 'moron': 5275, 'advis': 177, 'requir': 6613, 'defend': 2118, 'paper': 6102, 'ring': 6661, 'lion': 4848, 'that someon': 7680, 'be to': 1042, 'not one': 5595, 'of veri': 5820, 'll get': 4879, 'wast your': 9408, 'be that': 1039, 'sound like': 7231, 'that to': 7699, 'of those movi': 5814, 'tri to make': 9037, 'those of you': 8629, 'fault': 2747, 'stiff': 7336, 'ultra': 9098, 'violence': 9254, 'bedroom': 1078, 'piti': 6221, 'mere': 5170, 'leg': 4759, 'par': 6103, 'challeng': 1700, 'mak': 4997, 'aim': 222, 'translat': 9017, 'remov': 6601, 'nobl': 5543, 'joy': 4569, 'brothers': 1444, 'carol': 1656, 'reed': 6555, 'graham': 3311, 'fallen': 2707, 'powel': 6318, 'sidney': 7051, 'lumet': 4963, 'celluloid': 1688, 'left me': 4755, 'me feel': 5114, 'have watch': 3517, 'or so': 5993, 'writer director': 9873, 'has noth': 3451, 'noth to': 5630, 'add to': 157, 'it no': 4429, 'to which': 8948, 'it feel': 4373, 'probabl be': 6373, 'more to': 5272, 'about that': 71, 'br don': 1349, 'depict of': 2140, 'sure the': 7465, 'film mak': 2846, 'as we': 827, 'the new': 8079, 'get it': 3187, 'the third': 8252, 'to talk': 8913, 'violenc and': 9253, 'from an': 3092, 'unlik the': 9138, 'has noth to': 3452, 'to say about': 8884, 'add to the': 158, 'have seen it': 3503, 'it feel like': 4374, 'br br don': 1298, 'the work of': 8324, 'if you want': 3866, 'look at the': 4899, 'bett': 1150, 'davi': 2084, 'flop': 2948, 'phone': 6195, 'is anoth': 4143, 'come from': 1854, 'describ as': 2146, 'shelf': 6994, 'alien': 238, 'this thing': 8607, 'was bad': 9323, 'stori was': 7362, 'the alien': 7732, 'and did': 412, 'the stori was': 8231, 'boil': 1226, 'warner': 9305, 'stanwyck': 7294, 'doubl': 2342, 'lili': 4835, 'daughter': 2081, 'owner': 6086, 'steel': 7325, 'render': 6602, 'hop': 3750, 'liter': 4856, 'sleep': 7107, 'ey': 2673, 'seduc': 6857, 'fac': 2679, 'wayn': 9454, 'heavy': 3586, 'suicide': 7441, 'compani': 1891, 'bond': 1230, 'friendship': 3089, 'later in': 4709, 'daughter of': 2082, 'she has': 6984, 'up as': 9146, 'her father': 3610, 'die in': 2207, 'see whi': 6880, 'the young': 8336, 'job in': 4550, 'along the way': 300, 'chosen': 1780, 'indi': 4039, 'sorri': 7224, 'the video': 8289, 'and come': 406, 'be it': 1024, 'br am': 1271, 'way this': 9450, 'with ani': 9720, 'work on': 9807, 'everyth is': 2605, 'point out': 6277, 'scene but': 6792, 'but am': 1474, 'so you': 7159, 'watch if': 9416, 'and or': 515, 'sorri for': 7225, 'br br am': 1285, 'jess': 4539, 'hawk': 3522, 'stranger': 7380, 'european': 2556, 'explor': 2664, 'romantic': 6694, 'charisma': 1740, 'are two': 742, 'the train': 8268, 'with him': 9727, 'the citi': 7807, 'to offer': 8856, 'fact it': 2687, 'with each other': 9722, 'in fact it': 3915, 'between the two': 1168, 'canadian': 1632, 'avail': 915, 'uk': 9096, '13': 13, 'this seri': 8599, 'so well': 7155, 'well it': 9497, 'everyth els': 2603, 'avail on': 916, 'the uk': 8278, 'treat to': 9025, 'seri was': 6928, 'the time and': 8255, 'in the uk': 4002, 'lot of fun': 4926, 'good film': 3274, 'br have': 1355, 'in them': 4008, 'don care': 2308, 'this film to': 8531, 'br br have': 1304, 'harri': 3431, 'killed': 4642, 'fred': 3075, 'spoof': 7277, 'points': 6283, 'uneven': 9118, 'has lot': 3446, 'not realli': 5599, 'main character': 4992, 'play his': 6242, 'his daughter': 3692, 'and entertain': 424, 'be too': 1043, 'and one': 512, 'here in': 3635, 'these charact': 8417, 'work the': 9809, 'direct to': 2227, 'to video': 8939, 'film made': 2845, 'made it': 4976, 'parodi of': 6112, 'at some': 875, 'of these': 5806, 'some point': 7183, 'it work': 4507, 'an end': 354, 'movi would': 5366, 'and one of': 513, 'the support cast': 8242, 'this movi would': 8578, 'holi': 3735, 'law': 4725, 'sub': 7412, 'hopeless': 3756, 'asham': 834, 'the law': 7996, 'sub plot': 7413, 'provid the': 6413, 'that had': 7622, 'becom the': 1076, 'but then': 1531, 'tv movi': 9075, 'back of': 948, 'produc and': 6386, 'away the': 931, 'for tv': 3023, 'let alon': 4772, 'one person': 5941, 'to avoid': 8734, 'the back of': 7744, 'to the screen': 8922, 'tabl': 7493, 'confess': 1922, 'maybe': 5107, 'refus': 6563, 'alfr': 236, 'arriv': 761, 'grip': 3345, 'anchor': 374, 'woman who': 9774, 'one night': 5933, 'on her': 5875, 'home and': 3740, 'know where': 4668, 'show up': 7033, 'up at': 9147, 'at her': 865, 'her the': 3624, 'the woman': 8318, 'turn the': 9069, 'is abl': 4128, 'him but': 3668, 'he will': 3569, 'of him': 5706, 'just the': 4602, 'woman and': 9772, 'not see': 5601, 'the play': 8125, 'play on': 6245, 'but would': 1554, 'film version': 2871, 'the victim': 8288, 'refus to': 6564, 'the perform': 8115, 'that take': 7681, 'go through': 3247, 'think she': 8494, 'call the': 1588, 'is abl to': 4129, 'that you can': 7714, 'to do the': 8776, 'to be one': 8740, 'the perform of': 8117, 'but if you': 1497, 'materi': 5086, 'theatr': 8341, 'jail': 4521, 'religion': 6585, 'lesli': 4766, 'button': 1558, 'lov': 4934, 'intend': 4084, 'clichés': 1819, 'have given': 3480, 'again the': 207, 'one is': 5928, 'one has': 5925, 'the close': 7811, 'again and': 201, 'intend to': 4085, 'with my': 9736, 'but this movi': 1542, 'of the plot': 5789, 'live in the': 4869, 'in the right': 3995, 'jason': 4529, 'rachel': 6463, 'ward': 9302, 'sexy': 6958, 'heat': 3582, 'flashback': 2935, 'mystery': 5452, 'mix of': 5229, 'stori about': 7352, 'all but': 247, 'luca': 4955, '60': 48, 'overwhelm': 6083, 'edg': 2422, 'wars': 9309, 'jar': 4528, 'make film': 5000, 'star war': 7301, 'great film': 3326, 'br to': 1401, 'with onli': 9739, 'onli few': 5956, 'becaus you': 1072, 'br no': 1370, 'br br to': 1333, 'br br no': 1315, 'justic': 4608, 'montana': 5250, 'photographi': 6198, 'brad': 1412, 'pitt': 6222, 'alcohol': 234, 'appli': 693, 'burn': 1464, 'nomin': 5547, 'producer': 6388, 'technolog': 7537, 'separ': 6917, 'memori': 5159, 'is alway': 4138, 'never get': 5501, 'beauti of': 1054, 'story but': 7370, 'but think': 1538, 'husband and': 3823, 'state that': 7315, 'search for': 6848, 'the type': 8275, 'the photographi': 8120, 'scene where': 6805, 'and wonder': 615, 'the perfect': 8114, 'around the': 758, 'that scene': 7671, 'on their': 5894, 'deserv to': 2151, 'the cinema': 7804, 'at home': 867, 'chanc to': 1704, 'see his': 6863, 'the river': 8168, 'mean that': 5132, 'line that': 4845, 'scene of the': 6799, 'as he is': 784, 'by the way': 1577, 'not in the': 5587, 'the type of': 8276, 'the scene where': 8183, 'scene where the': 6806, 'deserv to be': 2152, 'to be abl': 8735, 'the chanc to': 7792, 'the hand of': 7951, 'curs': 2054, 'devot': 2175, 'infam': 4050, 'ann': 646, 'servant': 6936, 'accident': 100, 'pet': 6190, 'zombies': 9998, 'bitter': 1193, 'jump': 4574, 'beaten': 1051, 'em': 2461, 'eyes': 2677, 'the ultim': 8279, 'film festiv': 2823, 'call it': 1587, 'was be': 9324, 'script the': 6841, 'what would': 9552, 'and young': 624, 'don wast': 2326, 'your time': 9992, 'there not': 8402, 'gore and': 3295, 'the genr': 7934, 'at what': 888, 'across the': 113, 'you like': 9944, 'or at': 5983, 'children and': 1769, 'don wast your': 2327, 'wast your time': 9409, 'and you ll': 623, 'if you like': 3863, 'or at least': 5984, 'absurd': 92, 'cold': 1839, 'silly': 7060, 'intelligent': 4083, 'revenge': 6640, 'jaw': 4530, 'realism': 6509, 'peopl and': 6146, 'movi make': 5338, 'get me': 3188, 'me wrong': 5128, 'of how': 5712, 'so was': 7153, 'by it': 1570, 'go and': 3236, 'of movie': 5733, 'like me': 4816, 'and want': 597, 'don get me': 2312, 'get me wrong': 3189, 'have to say': 3514, 'out of this': 6052, 'and want to': 598, 'exit': 2642, 'captur': 1643, 'the direct': 7840, 'that one': 7665, 'and poor': 526, 'prepar to': 6338, 'in small': 3965, 'think it was': 8492, 'christma': 1784, 'met': 5175, 'achiev': 110, 'tribut': 9040, 'gift': 3203, 'trade': 9007, 'finest': 2907, 'express': 2667, 'maintain': 4994, 'integr': 4079, 'memorable': 5158, 'welcom': 9487, 'carter': 1661, 'grim': 3343, 'sincer': 7078, 'measur': 5141, 'mrs': 5393, 'anthoni': 657, 'roger': 6678, 'flawless': 2938, 'holiday': 3736, 'it he': 4391, 'tell the': 7549, 'stori with': 7363, 'less than': 4768, 'it becom': 4343, 'anyon els': 664, 'els in': 2455, 'onc you': 5912, 'actor to': 143, 'the finest': 7910, 'his face': 3693, 'then again': 8364, 'they do': 8435, 'the ghost': 7937, 'one by': 5919, 'the spirit': 8219, 'spirit of': 7263, 'yet to': 9908, 'role that': 6686, 'of young': 5830, 'the narrat': 8075, 'this version': 8613, 'is like': 4213, 'the imag': 7974, 'your mind': 9989, 'with this film': 9752, 'tell the stori': 7550, 'but then again': 1532, 'the spirit of': 8220, 'this one is': 8588, 'introduct': 4110, 'guid': 3363, 'shade': 6960, 'fantasy': 2725, 'servic': 6937, 'pregnant': 6332, 'pig': 6214, 'corps': 1975, 'premier': 6333, 'triumph': 9047, 'substance': 7419, 'accompani': 102, 'collect of': 1841, 'not br': 5570, 'abil to': 60, 'and emot': 420, 'the women': 8319, 'women and': 9776, 'the men': 8035, 'point that': 6278, 'lead to': 4735, 'women are': 9777, 'no sens': 5540, 'father and': 2745, 'and son': 546, 'have sex': 3505, 'woman in': 9773, 'between them': 1169, 'not br br': 5571, 'enough to be': 2515, 'sneak': 7124, 'adopt': 167, 'veri hard': 9211, 'doesn realli': 2298, 'idea of': 3830, 'off with': 5843, 'actor were': 144, 'found myself': 3060, 'you see': 9959, 'see them': 6874, 'the idea of': 7973, 'the actor were': 7725, 'survivor': 7475, 'gothic': 3303, 'like about': 4806, 'scenes and': 6812, 'not been': 5569, 'academi': 94, 'academi award': 95, 'didn get': 2198, 'the oscar': 8102, 'for best': 2974, 'it certain': 4355, 'released': 6579, 'sore': 7223, 'not bad': 5566, 'bad in': 967, 'way but': 9441, 'after this': 196, 'lack in': 4688, 'paris': 6108, 'garbag': 3149, 'birth': 1186, 'queen': 6449, 'beach': 1047, 'hotel': 3774, 'back the': 950, 'but veri': 1546, 'this piec': 8593, 'piec of': 6210, 'feel for': 2763, 'was made': 9349, 'citi of': 1800, 'doe have': 2287, 'were not': 9514, 'veri few': 9207, 'insult to': 4078, 'the mani': 8028, 'all know': 258, 'few of': 2785, 'nomin for': 5548, '10 br': 4, 'this piec of': 8594, 'it was made': 4492, 'was made in': 9350, 'there is one': 8396, 'we all know': 9457, '10 br br': 5, 'invent': 4111, 'alter': 311, 'pan': 6100, 'glow': 3235, 'competit': 1901, 'scheme': 6813, 'events': 2582, 'ought': 6029, 'lawyer': 4726, 'broadcast': 1437, 'reev': 6557, 'exhibit': 2638, 'america': 328, 'mouth': 5292, 'doing': 2303, 'indian': 4041, 'unabl': 9100, 'films but': 2889, 'next to': 5515, 'more and': 5257, 'in general': 3922, 'least it': 4746, 'been more': 1084, 'was as': 9321, 'don see': 2321, 'to ask': 8733, 'the question': 8154, 'film even': 2820, 'give us': 3222, 'to what': 8947, 'the answer': 7735, 'point in': 6271, 'in differ': 3912, 'ought to': 6030, 'with great': 9725, 'great deal': 3325, 'deal of': 2096, 'whi it': 9595, 'not what': 5615, 'is someth': 4268, 'understand that': 9112, 'unabl to': 9101, 'to explain': 8786, 'that peopl': 7667, 'scene br': 6790, 'so don': 7130, 'my heart': 5441, 'to think that': 8928, 'more and more': 5258, 'of the two': 5797, 'as if it': 788, 'other than that': 6025, 'that there are': 7688, 'the scene in': 8182, 'scene in which': 6796, 'of his own': 5709, 'shot of the': 7013, 'scene br br': 6791, 'superman': 7453, 'matrix': 5088, 'jacki': 4518, 'chan': 1702, 'jet': 4542, 'li': 4782, 'pointless': 6282, 'mask': 5077, 'martial': 5072, 'lose': 4914, 'ways': 9455, 'choreograph': 1778, 'gori': 3297, 'and often': 510, 'who would': 9663, 'now it': 5641, 'seem that': 6887, 'jacki chan': 4519, 'is fun': 4187, 'martial art': 5073, 'to win': 8949, 'other peopl': 6022, 'now that': 5642, 'the premis': 8141, 'that doe': 7611, 'human be': 3813, 'do and': 2264, 'are great': 712, 'if anyon': 3838, 'this review': 8596, 'they want': 8462, 'answer to': 656, 'lot and': 4922, 'will love': 9688, 'it seem that': 4456, 'for the film': 3009, 'the film but': 7898, 'they want to': 8463, 'want to know': 9296, 'dane': 2071, 'unbelievable': 9103, 'trite': 9046, 'dan': 2067, 'minute': 5216, 'badly': 975, 'and becaus': 396, 'in long': 3933, 'it shame': 4458, 'could get': 1984, 'the cast of': 7786, 'this was one': 8615, 'to do so': 8775, 'so much better': 7142, 'castl': 1673, 'sky': 7101, 'storytel': 7375, 'whatever': 9555, 'the sky': 8207, 'make one': 5013, 'again it': 206, 'it took': 4480, 'releas in': 6577, 'impress of': 3889, 'movi or': 5343, 'br give': 1354, 'it to be': 4477, 'br br give': 1303, 'vari': 9199, 'sir': 7084, 'anywher': 676, 'associ': 850, 'christian': 1783, 'sign': 7053, 'stumbl': 7402, 'indulg': 4045, 'directed': 2228, 'produced': 6387, 'masterpiec': 5082, 'was complet': 9332, 'on this': 5895, 'end the': 2484, 'the posit': 8136, 'that matter': 7654, 'associ with': 851, 'the special': 8217, 'will never': 9690, 'of self': 5753, 'believ me': 1116, 'not one of': 5596, 'one of them': 5937, 'the movi with': 8061, 'for that matter': 3008, 'if you don': 3860, 'animals': 644, 'numbers': 5655, 'ideal': 3833, 'till': 8678, 'did in': 2189, 'the studio': 8236, 'or you': 6001, 'at the top': 881, 'of the world': 5800, 'deliber': 2125, 'this has': 8538, 'the absolut': 7717, 'take away': 7496, 'sure if': 7462, 'this pictur': 8592, 'went on': 9509, 'that about': 7587, 'media': 5144, 'satir': 6752, 'worthi': 9837, 'oliv': 5863, 'born': 1243, 'larger': 4702, 'christ': 1782, 'well with': 9504, 'major of': 4996, 'are we': 744, 'it have': 4390, 'the major of': 8022, 'journalist': 4567, 'eeri': 2430, 'sinist': 7082, 'of blood': 5686, 'on all': 5864, 'in black': 3906, 'is extrem': 4179, 'movi made': 5337, 'plastic': 6238, 'perspect': 6189, 'notion': 5635, 'situation': 7092, 'cook': 1964, 'authent': 912, 'me this': 5123, 'the air': 7731, 'and feel': 432, 'thought the': 8644, 'each of': 2401, 'the comment': 7815, 'memori of': 5160, 'obtain': 5665, 'bottom': 1252, 'christmas': 1785, 'nurs': 5657, 'hospit': 3770, 'shut': 7044, '000': 1, 'hank': 3413, 'hasn': 3459, 'slip': 7111, 'explan': 2660, '50': 47, 'very': 9226, 'suit': 7442, 'problems': 6381, 'copy': 1970, 'com': 1846, 'is interest': 4207, 'copi of': 1969, 'the bottom': 7771, 'bottom of': 1254, 'made for': 4972, 'the hospit': 7964, 'perform by': 6170, 'would like': 9848, 'back into': 947, 'very veri': 9227, 'it also': 4332, 'is of': 4235, 'pop up': 6292, 'and again': 379, 'the bottom of': 7772, 'made for tv': 4973, 'would like to': 9849, 'ireland': 4123, 'ancient': 375, 'path': 6133, 'irish': 4124, 'cannib': 1634, 'automat': 914, 'ton': 8966, 'nuditi': 5649, 'breed': 1425, 'involved': 4121, 'slaughter': 7105, 'enhanc': 2501, 'drag': 2356, 'promis': 6399, 'beg': 1096, 'form': 3046, 'gari': 3152, 'simon': 7064, 'convent': 1958, 'knife': 4654, 'rapid': 6477, 'flesh': 2940, 'breast': 1422, 'wire': 9709, 'taylor': 7529, 'nake': 5455, 'earn': 2409, 'watched': 9434, 'concern': 1916, 'bi the': 1174, 'ton of': 8967, 'nuditi and': 5650, 'one might': 5931, 'the talent': 8244, 'except of': 2628, 'has his': 3443, 'to becom': 8744, 'the form': 7922, 'form of': 3047, 'of some': 5755, 'of horror': 5711, 'horror film': 3764, 'look as': 4897, 'get ani': 3177, 'head and': 3572, 'she want': 6990, 'after that': 193, 'and use': 595, 'use as': 9181, 'the less': 7999, 'rate of': 6482, 'with the except': 9745, 'the except of': 7877, 'the film br': 7897, 'the form of': 7923, 'the film in': 7901, 'excus': 2634, 'pain to': 6095, 'end was': 2488, 'see how': 6864, 'but did': 1482, 'seri and': 6925, 'felt that': 2779, 'never have': 5502, 'been made': 1083, 'from what': 3112, 'the end was': 7866, 'to see how': 8889, 'have been made': 3472, 'of the peopl': 5788, 'but noth': 1516, 'of work': 5827, 'charact were': 1729, 'made up': 4982, 'was perfect': 9365, 'movie this': 5382, '10 out': 7, 'the charact were': 7798, '10 out of': 8, 'savag': 6755, 'trust': 9055, 'chose': 1779, 'words': 9796, 'trust me': 9056, 'the boy': 7774, 'by some': 1572, 'the light': 8004, 'work in': 9804, 'in other': 3956, 'fact the': 2691, 'in fact the': 3916, 'miller': 5202, 'grown': 3353, 'conclusion': 1920, 'have onli': 3498, 'shown on': 7042, 'the year': 8334, 'star of': 7299, 'even wors': 2577, 'so we': 7154, 'left with': 4758, 'had no': 3386, 'they are not': 8425, 'this film as': 8521, 'updat': 9167, 'beast': 1049, 'spoken': 7276, 'great movie': 3330, 'the messag': 8036, 'the beast': 7752, 'put on': 6438, 'role in the': 6684, 'truck': 9049, 'fell': 2775, 'suspense': 7480, 'by one': 1571, 'turn it': 9064, 'gave this': 3160, 'this film has': 8525, 'to say that': 8886, 'but the film': 1529, 'turn it off': 9065, 'flaw': 2937, 'balanc': 979, 'recommended': 6549, 'two main': 9086, 'too the': 8981, 'action is': 129, 'movies the': 5390, 'the humour': 7970, 'the differ': 7839, 'and keep': 476, 'be good': 1019, 'of the action': 5762, 'the special effect': 8218, 'the two main': 8274, 'remak': 6587, 'pg': 6192, 'thin': 8472, 'aforement': 182, 'inept': 4048, 'target': 7523, 'brave': 1418, 'are so': 731, 'about them': 75, 'them br': 8352, 'save your': 6759, 'your money': 9990, 'them br br': 8353, 'andi': 626, 'water': 9436, 'join': 4558, 'concert': 1918, 'hide': 3651, 'sight': 7052, 'the water': 8298, 'it back': 4339, 'to film': 8793, 'of time and': 5817, 'slice': 7108, 'establish': 2550, 'prize': 6370, 'nobodi': 5544, 'florida': 2949, 'dean': 2101, 'who also': 9628, 'nice and': 5517, 'we see': 9472, 'young woman': 9982, 'won the': 9781, 'this role': 8597, 'live on': 4871, 'movi becaus': 5304, 'this type': 8610, 'carri the': 1660, 'the hollywood': 7962, 'we had': 9466, 'her friend': 3612, 'alway been': 319, 'this type of': 8611, 'go to be': 3249, 'neighborhood': 5492, 'upper': 9170, 'spoil': 7271, 'community': 1890, 'enjoy watch': 2508, 'like most': 4817, 'has done': 3439, 'so if': 7135, 'if your': 3867, 'look for': 4900, 'movi doe': 5309, 'movi isn': 5330, 'nativ': 5464, 'flash': 2934, 'but with': 1553, 'been the': 1086, 'in new': 3947, 'the impress': 7976, 'be as': 1010, 'as possible': 807, 'that am': 7590, 'for year': 3028, 'so to': 7152, 'out there': 6056, 'have not': 3494, 'not seen': 5602, 'have seen in': 3502, 'br the onli': 1388, 'have been the': 3474, 'in new york': 3948, 'tri to be': 9033, 'have not seen': 3495, 'it would be': 4510, 'sitcom': 7089, '1970s': 24, 'decad': 2107, 'encourag': 2473, 'aspir': 845, 'fulfil': 3118, 'dare': 2075, 'contrast': 1951, 'goofi': 3292, 'wear': 9480, 'multi': 5414, 'arnold': 754, 'jackson': 4520, 'hilarious': 3662, 'viewers': 9247, 'mainstream': 4993, 'afraid': 183, 'address': 162, 'shark': 6970, 'freak': 3074, 'good time': 3290, 'time was': 8699, 'but like': 1510, 'on you': 5906, 'have their': 3510, 'life to': 4798, 'them and': 8349, 'heart and': 3580, 'mother and': 5286, 'and love': 489, 'the kid': 7984, 'were just': 9513, 'live and': 4867, 'person and': 6184, 'dream of': 2366, 'as was': 826, 'brother and': 1443, 'was play': 9366, 'in way': 4021, 'portray as': 6301, 'found that': 3062, 'time that': 8694, 'quit good': 6459, 'if onli': 3845, 'of the show': 5792, 'in way that': 4022, 'stunt': 7404, 'fight scene': 2794, 'be more': 1028, 'charact have': 1719, 'power and': 6320, 'effect are': 2433, 'special effect are': 7248, 'bias': 1175, 'going': 3259, 'adventure': 174, 'take off': 7502, 'and just': 475, 'time on': 8691, 'this out': 8590, 'in the begin': 3974, 'recommend it to': 6545, 'graphic': 3315, 'aunt': 909, 'franc': 3069, 'bride': 1427, 'wed': 9482, 'bed': 1077, 'abrupt': 86, 'build': 1456, 'but can': 1481, 'watch movi': 9421, 'take care': 7497, 'care of': 1652, 'of make': 5723, 'get their': 3196, 'one in': 5926, 'all kind': 256, 'get her': 3182, 'one the': 5945, 'to sleep': 8903, 'while the': 9621, 'effect in': 2434, 'littl to': 4863, 'especi when': 2547, 'build up': 1457, 'one to': 5947, 'take care of': 7498, 'all kind of': 257, 'hat': 3460, 'gotta': 3304, 'made the': 4979, 'say this': 6777, 'of your': 5831, 'your life': 9988, 'it actual': 4327, 'just don': 4588, 'this film and': 8519, 'film and it': 2805, 'increas': 4034, 'commit': 1886, 'shakespear': 6963, 'bar': 986, 'revel': 6638, 'expos': 2666, 'relev': 6580, 'parallel': 6104, 'creatur': 2026, 'best part': 1142, 'see movi': 6869, 'you would': 9976, 'in recent': 3963, 'the best part': 7761, 'best part of': 1143, 'laurel': 4724, 'grave': 3319, 'conveni': 1957, 'pad': 6091, 'board': 1220, 'forget': 3040, 'skip': 7098, 'her mother': 3617, 'the house': 7967, 'she also': 6973, 'start off': 7306, 'it there': 4473, 'in movie': 3942, 'skip this': 7099, 'corner': 1972, 'boot': 1236, 'warm': 9303, 'stewart': 7333, 'nine': 5525, 'ludicr': 4960, 'six': 7094, 'letter': 4777, 'expert': 2656, 'felix': 2774, 'glorious': 3233, 'ambiti': 327, 'dear': 2102, 'invit': 4115, 'charl': 1742, 'snow': 7125, 'winter': 9707, 'asid': 836, 'descript': 2148, 'perfectly': 6165, 'vivid': 9264, 'jealous': 4532, 'nervous': 5497, 'proud': 6407, 'creation': 2023, 'believable': 1121, 'mail': 4989, 'to actual': 8721, 'those film': 8626, 'too hard': 8976, 'come up': 1864, 'togeth in': 8959, 'it easi': 4369, 'love story': 4943, 'ani other': 638, 'from other': 3100, 'arriv in': 762, 'ask for': 840, 'even as': 2560, 'film on': 2855, 'up of': 9157, 'that his': 7632, 'is his': 4201, 'the possibl': 8137, 'than to': 7583, 'that everyon': 7615, 'asid from': 837, 'the full': 7927, 'sinc he': 7073, 'the person': 8119, 'he know': 3545, 'might not': 5196, 'his way': 3718, 'prove that': 6409, 'all there': 273, 'is often': 4236, 'into her': 4101, 'great perform': 3331, 'realis that': 6508, 'appear as': 687, 'which he': 9604, 'the effort': 7856, 'the door': 7847, 'so on': 7144, 'on but': 5870, 'desir to': 2155, 'other film': 6017, 'instead it': 4074, 'we should': 9473, 'of those film': 5813, 'come up with': 1865, 'and the plot': 566, 'noth more than': 5628, 'made in the': 4975, 'thing about this': 8475, 'in which he': 4025, 'and so on': 542, 'to have the': 8812, 'film is that': 2837, 'refresh': 6562, 'to spend': 8906, 'some scene': 7186, 'scene were': 6804, 'about what': 82, 'to them': 8925, 'think you': 8502, 'hunt': 3819, 'it suppos': 4467, 'everi charact': 2590, 'won be': 9780, 'much and': 5397, 'of bad': 5683, 'bad acting': 957, 'the so': 8210, 'laugh out': 4716, 'the help': 7956, 'help of': 3595, 'it most': 4426, 'footag of': 2964, 'it suppos to': 4468, 'better than this': 1161, 'the help of': 7957, 'johnson': 4557, 'predictable': 6330, 'monkey': 5248, 'veteran': 9228, 'br they': 1395, 'the produc': 8147, 'they even': 8437, 'want the': 9290, 'br br they': 1330, 'of my life': 5739, 'rap': 6475, 'hammer': 3405, 'rival': 6667, 'leader': 4736, 'butt': 1557, 'drugs': 2379, 'album': 233, 'fade': 2693, 'reduc': 6554, 'sometimes': 7208, 'ignor': 3868, 'how they': 3795, 'get involv': 3186, 'school and': 6815, 'of year': 5828, 'it onli': 4439, 'for more': 2992, 'success in': 7425, 'my mind': 5444, 'where he': 9576, 'see some': 6870, 'other actor': 6013, 'refer to': 6559, 'me as': 5110, 'and got': 448, 'but you': 1555, 'to happen': 8808, 'other and': 6014, 'girl and': 3205, 'ignor the': 3869, 'to write': 8952, 'although this': 316, 'is clear': 4167, 'the humor': 7969, 'seem more': 6886, 'about this movie': 79, 'talk about the': 7517, 'and of course': 509, 'to go to': 8807, 'is about to': 4132, 'dress': 2368, 'warrior': 9308, 'sold': 7166, 'asian': 835, 'africa': 184, 'further': 3138, 'communiti': 1889, 'coast': 1836, 'hood': 3748, 'vs': 9271, 'noth about': 5622, 'was over': 9364, 'the color': 7812, 'and tri': 590, 'here are': 3629, 'are few': 707, 'veri differ': 9205, 'differ from': 2212, 'better if': 1156, 'to work': 8950, 'that he was': 7630, 'one in the': 5927, 'in their own': 4007, 'to work with': 8951, 'glass': 3228, 'brown': 1447, 'laid': 4693, 'episode': 2533, 'girlfriend': 3209, 'eric': 2537, 'hot': 3773, 'basement': 994, 'when first': 9557, 'and start': 548, 'it too': 4479, 'bad that': 971, 'that that': 7682, 'that show': 7677, 'show is': 7027, 'come on': 1859, 'he doe': 3531, 'when his': 9560, 'had it': 3381, 'town and': 9002, 'his girlfriend': 3700, 'want to get': 9294, 'know how to': 4660, 'mini': 5209, 'endur': 2494, 'exercis': 2637, 'tribe': 9039, 'opera': 5975, 'rush': 6717, 'life as': 4789, 'an insult': 367, 'is so bad': 4266, 'littl more than': 4862, 'wait for the': 9275, 'thi': 8467, 'reviews': 6643, 'woodi': 9791, 'thi movi': 8469, 'woodi allen': 9792, 'good br': 3270, 'but no': 1514, 'film if': 2831, 'good br br': 3271, 'is suppos to': 4274, 'see this film': 6876, 'film if you': 2832, 'acclaim': 101, 'onli the': 5963, 'blockbust': 1210, 'knows': 4676, 'facial': 2685, 'sake': 6735, 'shi': 6996, 'erot': 2538, 'tragic': 9011, 'scope': 6822, 'force': 3034, 'hollow': 3737, 'rip': 6662, 'cloth': 1830, 'silenc': 7056, 'sword': 7488, 'ran': 6471, 'nonetheless': 5553, 'condit': 1921, 'and instead': 467, 'to anoth': 8728, 'was becaus': 9325, 'the day': 7830, 'the human': 7968, 'the face': 7879, 'face of': 2683, 'than most': 7578, 'shouldn be': 7023, 'the materi': 8031, 'that happen': 7623, 'the picture': 8122, 'not much': 5593, 'his mother': 3708, 'then we': 8373, 'goe on': 3256, 'and on': 511, 'the look': 8016, 'look of': 4906, 'we learn': 9469, 'later on': 4710, 'guy in': 3371, 'are also': 702, 'connect with': 1931, 'it about': 4326, 'car and': 1646, 'charm and': 1745, 'the car': 7781, 'the dream': 7849, 'br with': 1409, 'and few': 433, 'of the day': 5770, 'in the face': 3980, 'the face of': 7880, 'on and on': 5867, 'middl of the': 5189, 'some of them': 7180, 'br br with': 1341, 'on it own': 5883, 'kiss': 4651, 'sequences': 6923, 'of star': 5757, 'but of': 1517, 'young man': 9981, 'emot and': 2466, 'you not': 9956, 'and tri to': 591, 'matt': 5089, 'relax': 6575, 'horrif': 3761, 'museum': 5420, 'laura': 4723, 'report': 6610, 'nightmar': 5524, 'dig': 2217, 'russel': 6718, 'production': 6392, 'anyone': 666, 'rubbish': 6706, 'the small': 8209, 'they decid': 8431, 'to help': 8814, 'are both': 706, 'is call': 4164, 'year earlier': 9892, 'do with': 2278, 'happen and': 3415, 'event of': 2580, 'the monster': 8044, 'end and': 2474, 'of three': 5815, 'everyth about': 2602, 'dull and': 2389, 'care for': 1651, 'where you': 9583, 'they decid to': 8432, 'to do with': 8777, 'do with the': 2279, 'there are few': 8380, 'at the veri': 882, 'belief': 1111, 'leav you': 4751, 'by all': 1563, 'and although': 384, 'must have': 5431, 'is film': 4182, 'your own': 9991, 'on what': 5903, 'film of all': 2853, 'magazin': 4986, 'britain': 1434, 'bullet': 1460, 'editor': 2427, 'sharp': 6971, 'nail': 5453, 'offens': 5845, 'complic': 1908, 'alison': 239, 'culture': 2049, 'lust': 4964, 'because': 1073, 'danni': 2074, 'kitchen': 4652, 'fat': 2741, 'much the': 5411, 'his life': 3705, 'is at': 4145, 'he meet': 3550, 'what can': 9528, 'the comedi': 7813, 'the general': 7933, 'believ in': 1114, 'needless to': 5488, 'around in': 757, 'yet the': 9907, 'to lose': 8837, 'develop and': 2170, 'and interest': 468, 'love interest': 4939, 'he play': 3556, 'the part of': 8110, 'of his life': 5708, 'the movie and': 8063, 'needless to say': 5489, 'it will be': 4504, 'basically': 997, 'conceiv': 1912, 'they use': 8461, 'camera and': 1596, 'film not': 2851, 'like it was': 4815, 'and end up': 422, 'hugh': 3810, 'mile': 5200, 'like some': 4820, 'anyth else': 671, 'though it': 8634, 'be on': 1029, 'out as': 6034, 'line and': 4841, 'actor are': 136, 'wouldn be': 9860, 'if we': 3856, 'clear that': 1814, 'and most of': 497, 'most of his': 5280, 'the word': 8322, 'like in': 4813, 'all too': 282, 'and two': 593, 'the danc': 7827, 'this movi at': 8566, 'this movi and': 8563, 'internet': 4096, 'resembl': 6616, 'segment': 6902, 'annoying': 651, 'know about': 4657, 'this might': 8562, 'for mani': 2989, 'the overal': 8106, 'time it': 8689, 'the comic': 7814, 'are look': 716, 'you should': 9962, 'you are look': 9912, 'are look for': 717, 'then you': 8374, 'watch film': 9414, 'outsid of': 6065, 'you find': 9930, 'simpli becaus': 7068, 'be like': 1026, 'br like': 1366, 'beyond the': 1172, 'the tradit': 8266, 'american film': 330, 'that it has': 7643, 'this is film': 8542, 'br br like': 1311, 'pacino': 6089, 'speech': 7252, 'ov': 6068, 'with good': 9724, 'quit well': 6460, 'right up': 6660, 'fabul': 2678, 'hudson': 3806, 'dorothi': 2340, 'stack': 7284, 'instinct': 4076, 'smooth': 7122, 'craft': 2013, 'rent the': 6605, 'film by': 2815, 'and littl': 484, 'soap opera': 7161, 'work is': 9805, 'the use': 8282, 'and goe': 446, 'the camera work': 7780, 'the use of': 8283, 'difficulti': 2216, 'accomplish': 103, 'nazi': 5471, 'play an': 6239, 'who had': 9637, 'quit few': 6458, 'was abl': 9310, 'he tri': 3564, 'we need': 9470, 'was abl to': 9311, 'he tri to': 3565, 'film like this': 2843, 'caught': 1681, 'fantastic': 2724, 'that actual': 7588, 'some great': 7173, 'straight to': 7377, 'the south': 8216, 'and my': 501, 'my wife': 5449, 'wife and': 9680, 'the budget': 7778, 'film look': 2844, 'charact development': 1718, 'help to': 3597, 'and stori': 550, 'characters and': 1734, 'check this': 1755, 'film out': 2857, 'most of them': 5282, 'on this film': 5896, 'vicious': 9231, 'feed': 2760, 'virus': 9259, 'eager': 2403, 'patrick': 6137, 'atroci': 892, 'come off': 1857, 'as some': 811, 'the govern': 7941, 'no idea': 5528, 'to present': 8867, 'do yourself': 2281, 'is obvious': 4234, 'feel of': 2766, 'bad act': 956, 'the feel of': 7888, 'japanes': 4527, 'japan': 4526, 'underr': 9109, 'women in': 9778, 'for them': 3016, 'the japanes': 7980, 'to marri': 8845, 'his act': 3687, 'don want': 2324, 'don want to': 2325, 'subplot': 7416, 'credibl': 2027, 'cia': 1789, 'meat': 5142, 'it start': 4465, 'is done': 4172, 'young girl': 9980, 'which the': 9611, 'that how': 7633, 'drawn out': 2363, 'the unit': 8280, 'the place': 8123, 'action movi': 130, 'movi out': 5344, 'happen in': 3416, 'in which the': 4026, 'disbelief': 2245, 'per': 6162, 'distanc': 2256, 'crowd': 2041, 'mall': 5033, 'neck': 5479, 'closest': 1829, '40': 44, 'quest': 6450, 'qualifi': 6444, 'the recent': 8158, 'more br': 5259, 'first saw': 2922, 'veri bad': 9204, 'br most': 1369, 'find this': 2904, 'real world': 6506, 'bit more': 1189, 'them are': 8350, 'even that': 2570, 'the mood': 8045, 'that get': 7618, 'well made': 9499, 'film we': 2874, 'just an': 4579, 'it give': 4380, 'she could': 6976, 'the road': 8169, 'or that': 5996, 'hate this': 3464, 'befor you': 1094, 'too late': 8977, 'screen and': 6831, 'shame that': 6967, 'more br br': 5260, 'br br most': 1314, 'of them are': 5805, 'movi is so': 5327, 'that this was': 7697, 'of this movie': 5811, 'thi is': 8468, 'on how': 5878, 'all they': 275, 'they think': 8458, 'he kill': 3544, 'didn like': 2201, 'isn it': 4318, 'peopl to': 6155, 'see this movi': 6877, 'the movi are': 8053, 'was suppos': 9378, 'me want': 5125, 'two hour': 9085, 'was suppos to': 9379, 'me want to': 5126, 'want to go': 9295, 'citizen': 1801, 'kane': 4611, 'web': 9481, 'stood': 7349, 'greatest': 3335, 'inhabit': 4054, 'intelligence': 4082, 'wise': 9710, 'quirki': 6456, 'court': 2007, 'process': 6384, 'crazy': 2020, 'pictures': 6207, 'and mani': 492, 'in need': 3946, 'need of': 5483, 'the ladi': 7992, 'that seem': 7672, 'is now': 4233, 'had not': 3387, 'the greatest': 7943, 'director of': 2233, 'here he': 3634, 'familiar with': 2713, 'him into': 3673, 'take him': 7500, 'lie in': 4785, 'the countri': 7819, 'event that': 2581, 'are still': 734, 'br an': 1272, 'didn realli': 2202, 'at this': 884, 'this point': 8595, 'the element': 7857, 'scene was': 6803, 'the edit': 7854, 'end that': 2483, 'will alway': 9682, 'alway be': 318, 'so cal': 7129, 'it must': 4427, 'seen to': 6901, 'believ and': 1113, 'is inde': 4206, 'twist and': 9082, 'end to': 2485, 'that if': 7634, 'would probabl': 9855, 'exampl of the': 2619, 'up on the': 9159, 'as an actor': 769, 'the relationship between': 8160, 'br br an': 1286, 'at this point': 885, 'what realli': 9542, 'realli want': 6527, 'they tri': 8459, 'and mayb': 493, 'to realli': 8876, 'mani film': 5046, 'of view': 5821, 'like watch': 4833, 'is must': 4223, 'realli want to': 6528, 'they tri to': 8460, 'until the end': 9143, 'what is go': 9537, 'there is not': 8394, 'point of view': 6276, 'is tri to': 4297, 'everybodi': 2594, 'photograph': 6197, 'meaning': 5135, 'building': 1458, 'hospital': 3771, 'lynch': 4965, 'kubrick': 4679, 'altern': 312, 'script was': 6842, 'claim that': 1806, 'to die': 8772, 'the theme': 8249, 'theme of': 8361, 'and seem': 536, 'like her': 4810, 'or is': 5988, 'the pain': 8108, 'absolut noth': 90, 'so far': 7131, 'is way': 4304, 'you go to': 9934, 'come to the': 1863, 'the time the': 8257, 'suitabl': 7443, 'seed': 6881, 'tip': 8713, 'electr': 2447, 'chair': 1699, 'buri': 1463, 'alive': 241, 'gruesom': 3355, 'movi ever': 5311, 'just for': 4589, 'the sake': 8175, 'sake of': 6736, 'to death': 8769, 'and plot': 524, 'those that': 8630, 'away and': 928, 'would have to': 9847, 'worst movi ever': 9828, 'it all the': 4330, 'for the sake': 3014, 'the sake of': 8176, 'soviet': 7237, 'union': 9129, 'thought this': 8645, 'it sound': 4464, 'the start': 8224, 'start of': 7305, 'just to': 4603, 'to act': 8720, 'us to': 9177, 'to no': 8854, 'was done': 9333, 'in world': 4028, 'world war': 9819, 'get out': 3192, 'realli get': 6520, 'in the cast': 3976, 'and they are': 578, 'film in the': 2834, 'again and again': 202, 'get out of': 3193, 'friday': 3083, 'that were': 7705, 'did great': 2186, 'as usual': 825, 'will get': 9686, 'did it': 2190, 'job and': 4548, 'of the scene': 5791, 'the scene with': 8184, 'it was great': 4489, 'did great job': 2187, 'bear': 1048, 'mayor': 5108, 'pose': 6304, 'some veri': 7190, 'and good': 447, 'assign': 848, '45': 46, 'ryan': 6723, 'theatric': 8342, 'provok': 6414, 'it did': 4363, 'the long': 8015, 'with so': 9741, 'comic relief': 1876, 'was clear': 9331, 'year befor': 9891, 'll have': 4880, 'but more': 1511, 'interest and': 4090, 'and thought': 584, 'for me to': 2991, 'this film but': 8523, 'serial': 6929, 'pretenti': 6348, 'disappointing': 2241, 'neighbor': 5491, 'serial killer': 6930, 'use in': 9183, 'for while': 3027, 'is some': 4267, 'transit': 9016, 'san': 6744, 'who made': 9649, 'show with': 7036, 'an open': 371, 'how can': 3786, 'use his': 9182, 'duke': 2387, 'california': 1585, 'somewher': 7210, '2005': 36, 'cousin': 2008, 'johnni': 4556, 'bo': 1219, 'luke': 4962, 'jessica': 4540, 'simpson': 7069, 'strip': 7389, 'mine': 5208, 'good to': 3291, 'front of the': 3115, '12': 12, 'everyday': 2595, 'tale of': 7512, 'old and': 5860, 'effect of': 2435, 'we were': 9475, 'their live': 8344, 'line in': 4842, 'this just': 8554, 'resort': 6619, 'feet': 2773, 'ground': 3348, 'scientist': 6821, 'threw': 8652, 'rocket': 6677, 'stab': 7283, 'slightest': 7110, 'batman': 1001, 'interpret': 4097, 'effect were': 2436, 'like was': 4832, 'was watch': 9396, 'video game': 9238, 'note that': 5620, 'put into': 6436, 'the incred': 7978, 'plot twist': 6265, 'left the': 4756, 'it been': 4344, 'out what': 6060, 'movi where': 5362, 'the sun': 8240, 'ani more': 634, 'the atmospher': 7737, 'the ground': 7945, 'he didn': 3530, 'his son': 3716, 'it into': 4396, 'the side': 8205, 'just make': 4594, 'they might': 8450, 'to run': 8880, 'destroy the': 2162, 'the slightest': 8208, 'interpret of': 4098, 'movi itself': 5332, 'is wrong': 4314, 'movi if': 5320, 'buy it': 1560, 'it when': 4502, 'you realli': 9958, 'to wast': 8941, 'say about this': 6767, 'this film in': 8526, 'out of his': 6048, 'australia': 910, 'expect from': 2644, 'absolut love': 88, 'great in': 3327, 'what to expect': 9549, 'drown': 2377, 'more about': 5256, 'tell him': 7547, 'him that': 3675, 'thousand of': 8648, 'the climax': 7810, 'however this': 3805, 'can not': 1616, 'the master': 8030, 'master of': 5081, 'movi ever seen': 5313, 'anna': 647, 'keaton': 4616, 'costs': 1979, 'was absolut': 9313, 'felt like': 2778, 'not good': 5582, 'well br': 9492, 'this at': 8508, 'all costs': 249, 'stuck in': 7397, 'even though it': 2573, 'as well br': 830, 'well br br': 9493, 'at all costs': 859, 'life the': 4797, 'br even': 1350, 'but on': 1518, 'br br even': 1299, 'announc': 648, 'lemmon': 4762, 'is given': 4189, 'the coupl': 7820, 'close up': 1827, 'the direct is': 7841, 'are go to': 710, 'that if you': 7635, 'cari': 1654, 'timeless': 8704, 'cube': 2046, 'bath': 999, 'estat': 2551, 'funnier': 3130, 'blend': 1206, 'easy': 2417, 'offici': 5849, 'mary': 5076, 'lovabl': 4935, 'futurist': 3141, 'trailer': 9012, 'year after': 9887, 'captur the': 1644, 'show you': 7037, 'hous in': 3782, 'is where': 4308, 'they need': 8452, 'to buy': 8752, 'out but': 6038, 'that did': 7609, 'with the help': 9746, 'so bad that': 7128, 'languag': 4699, 'widow': 9678, 'cent': 1689, 'imagination': 3877, 'guest': 3362, 'sid': 7046, 'insan': 4059, 'wealthi': 9478, 'died': 2208, 'and total': 589, 'time he': 8686, 'her husband': 3614, 'figur out': 2798, 'is my': 4224, 'and he is': 455, 'dash': 2079, 'nothing': 5632, 'deliveri': 2128, 'heroine': 3645, 'phantom': 6193, 'progress': 6397, 'prop': 6402, 'is possibl': 4249, 'possibl the': 6308, 'this should': 8600, 'watch br': 9412, 'the key': 7983, 'just one': 4596, 'charact was': 1728, 'and play': 523, 'scene from': 6793, 'guess the': 3361, 'to figur': 8790, 'is rather': 4256, 'movi to watch': 5357, 'watch br br': 9413, 'all over the': 264, 'the plot and': 8127, 'in the past': 3992, 'in the second': 3998, 'to figur out': 8791, 'recreat': 6551, 'ape': 680, 'incid': 4030, 'youth': 9994, 'mentioned': 5169, 'trip': 9044, 'boredom': 1241, 'point to': 6280, 'to and': 8726, 'did the': 2192, 'movi take': 5351, 'there also': 8377, 'style of': 7410, '20 minut': 30, 'they never': 8453, 'worthi of': 9838, 'some nice': 7177, 'the bad': 7746, 'the book and': 7770, 'of the more': 5781, 'an hour and': 364, 'hour and half': 3777, 'part of this': 6119, 'guarante': 3356, 'yesterday': 9903, 'treasur': 9023, 'lennon': 4764, 'ther': 8376, 'crack': 2012, 'selfish': 6905, 'tribut to': 9041, 'of war': 5822, 'it best': 4345, 'move to': 5296, 'the heart': 7953, 'to chang': 8758, 'they had to': 8443, 'rid': 6651, 'tiger': 8676, 'ya': 9883, 'and work': 616, 'to rememb': 8878, 'the job': 7981, 'and were': 604, 'imit': 3879, 'no plot': 5537, 'appeal to': 685, 'imag of': 3875, 'rip off': 6663, 'the ring': 8167, 'cat and': 1676, 'start with the': 7312, 'trek': 9028, 'isol': 4322, 'distract': 2258, 'block': 1209, 'oppos': 5979, 'interact': 4088, 'too but': 8974, 'tell me': 7548, 'me was': 5127, 'plot of': 6261, 'the episod': 7872, 'oppos to': 5980, 'just how': 4591, 'which will': 9615, 'the plot of': 8129, 'refer to the': 6560, 'complain': 1902, 'wes': 9522, 'craven': 2018, 'forever': 3039, 'onli reason': 5961, 'complain about': 1903, 'out at': 6035, 'bad for': 964, 'the onli reason': 8093, 'this one and': 8587, 'the way to': 8306, 'benefit': 1129, 'paint': 6096, 'vampir': 9197, 'compet': 1900, 'unintent': 9128, 'random': 6472, 'loud': 4931, 'so she': 7146, 'use it': 9184, 'impress that': 3890, 'they ll': 8447, 'he and': 3524, 'way they': 9449, 'my eye': 5435, 'while this': 9623, 'or just': 5989, 'good movi': 3282, 'movi by': 5306, 'the impress that': 7977, 'it not even': 4431, 'and it not': 472, 'the way they': 8304, 'instal': 4069, 'that like': 7648, 'of the greatest': 5778, 'subtitl': 7420, 'say is': 6769, 'it becaus': 4342, 'becaus that': 1066, 'the typic': 8277, 'stori that': 7360, 'keep you': 4621, 'of it is': 5718, 'even if you': 2567, 'clich': 1816, 'are they': 739, 'thought of': 8642, 'good thing': 3289, 'and money': 494, 'watch this movi': 9430, 'the actor are': 7724, 'make this movi': 5024, 'palma': 6099, 'dozen': 2353, 'topic': 8987, 'nanci': 5459, 'gordon': 3293, 'medium': 5147, 'movi so': 5349, 'de palma': 2093, 'see in': 6866, 'was film': 9336, 'thing like': 8480, 'entir movi': 2526, 'an import': 365, 'still be': 7338, 'be consid': 1014, 'the style': 8237, 'that would be': 7711, 'theaters': 8340, 'pleasant': 6252, 'the critic': 7826, 'it if': 4392, 'page': 6092, 'crude': 2042, 'rose': 6700, 'hardi': 3430, 'brand': 1416, 'dealt': 2099, 'books': 1235, 'of john': 5719, 'that even': 7614, 'father who': 2746, 'who did': 9632, 'there some': 8405, 'an earli': 353, 'dealt with': 2100, 'has got': 3441, 'for the role': 3013, 'jewish': 4543, 'broad': 1436, 'surfac': 7467, 'are suppos': 735, 'charact as': 1716, 'peopl of': 6153, 'are suppos to': 736, 'saying': 6779, 'otherwise': 6028, 'wasn even': 9403, 'start the': 7308, 'movie so': 5379, 'movie not': 5378, 'or ani': 5982, 'in what': 4023, 'girl who': 3208, 'grow up': 3352, 'doe he': 2288, 'that might': 7656, 'give me': 3215, 'in the open': 3990, 'countless': 1995, 'robot': 6674, 'obsess': 5663, 'and yes': 618, 'mention the': 5168, 'someth like': 7201, 'br well': 1405, 'are realli': 730, 'do what': 2277, 'to anyone': 8731, 'to mention the': 8849, 'that seem to': 7673, 'br br well': 1337, 'but they are': 1537, 'body': 1225, 'propaganda': 6403, 'what this': 9547, 'famili and': 2711, 'the natur': 8077, 'true stori': 9051, 'an amaz': 347, 'we do': 9461, 'comment on the': 1881, 'and the way': 569, 'endear': 2490, 'footbal': 2966, 'to pass': 8860, 'what an': 9527, 'lost in': 4920, 'to tri': 8934, 'for one': 2998, 'high recommended': 3655, 'neat': 5476, 'hill': 3663, 'useless': 9189, 'ha': 3377, 'learn from': 4742, 'oh and': 5852, 'find the': 2902, 'still have': 7339, 'to find the': 8796, 'preview': 6355, 'that movi': 7658, 'was the best': 9384, 'the younger': 8337, 'here that': 3638, 'did this': 2194, 'all the charact': 268, 'horrifi': 3762, 'whit': 9626, 'is perhap': 4246, 'the french': 7925, 'the costum': 7818, 'be quit': 1032, 'well that': 9500, 'an attempt': 350, 'an attempt to': 351, 'the troubl': 8269, 'of man': 5724, 'for no': 2996, 'good for': 3275, 'but some': 1524, 'forgot': 3044, 'it great': 4384, 'at all the': 860, 'musical': 5426, 'worse': 9824, 'get this': 3197, 'good enough': 3273, 'the student': 8235, 'fist': 2927, 'superior': 7452, 'peck': 6144, 'finger': 2908, 'anger': 629, 'north': 5559, 'korean': 4678, 'companion': 1892, 'argument': 750, 'pride': 6358, 'ed': 2419, 'shake': 6962, 'it clear': 4356, 'did he': 2188, 'off as': 5834, 'who think': 9656, 'think he': 8488, 'say he': 6768, 'tell us': 7551, 'it time': 4475, 'job with': 4552, 'caught up': 1682, 'see him': 6862, 'even when': 2575, 'of person': 5747, 'come back': 1853, 'go down': 3239, 'movi just': 5333, 'here it': 3637, 'of such': 5759, 'come off as': 1858, 'caught up in': 1683, 'for the most': 3011, 'the most part': 8050, 'the charact in': 7796, 'charact in the': 1721, 'spoilers': 7273, 'goes': 3258, 'dump': 2391, 'this becaus': 8509, 'say it': 6770, 'whom he': 9672, 'br bi': 1279, 'men in': 5163, 'even get': 2563, 'what do': 9530, 'not all': 5561, 'to say it': 8885, 'br br bi': 1292, 'the titl of': 8260, 'of each': 5696, 'shot and': 7010, 'make an': 4998, 'to not': 8855, 'whole movie': 9669, 'the peopl who': 8113, 'of some of': 5756, 'so much more': 7143, 'the whole movie': 8312, 'whale': 9526, 'ship': 6999, 'resist': 6618, 'pearl': 6143, 'outfit': 6062, 'assassin': 847, 'destruct': 2163, 'do you': 2280, 'movi look': 5336, 'the ship': 8202, 'forget the': 3041, 'it then': 4472, 'be about': 1007, 'this whole': 8618, 'the follow': 7921, 'are onli': 727, 'insid the': 4062, 'and take': 553, 'these are': 8416, 'was tri': 9392, 'br oh': 1374, 'but at': 1476, 'look like it': 4905, 'it look like': 4417, 'and then there': 573, 'then there is': 8370, 'if it was': 3841, 'it is in': 4400, 'was tri to': 9393, 'br br oh': 1319, 'chiba': 1762, 'fighter': 2796, 'ani kind': 633, 'world is': 9817, 'wwii': 9882, 'to begin': 8745, 'movi could': 5308, 'which had': 9602, 'and pretti': 527, 'the way of': 8302, 'eva': 2557, 'parker': 6110, 'awesome': 935, 'me laugh': 5119, 'out loud': 6045, 'dozen of': 2354, 'like said': 4819, 'laugh out loud': 4717, 'this movi had': 8569, '30 minut': 43, 'mani thing': 5051, 'work but': 9802, 'this movi as': 8565, 'to the movi': 8918, 'noth in': 5625, 'with what': 9757, 'can wait': 1628, 'the level': 8000, 'must have been': 5432, 'to keep the': 8825, 'the level of': 8001, 'mechan': 5143, 'nonsense': 5555, 'vote': 9270, 'again in': 205, 'them as': 8351, 'don miss': 2319, 'miss it': 5222, 'childhood': 1766, 'adapt of': 155, 'stori has': 7354, 'see and': 6859, 'have just': 3486, 'to love': 8838, 'film and the': 2806, 'by the end': 1575, 'it in the': 4395, 'drink': 2371, 'real life': 6505, 'to play': 8863, 'to make movi': 8841, 'woo': 9788, 'wilson': 9699, 'frame': 3068, 'cyborg': 2059, 'explod': 2662, 'show off': 7029, 'yell': 9898, 'catherin': 1679, 'virgin': 9256, 'excel as': 2623, 'the obvious': 8084, '40 year': 45, 'effective': 2437, 'grayson': 3320, 'access': 98, 'doesn know': 2296, 'and put': 529, 'for such': 3005, 'featur film': 2758, 'are quit': 729, 'look good': 4903, 'have one': 3497, 'someth about': 7199, 'the make': 8023, 'there is the': 8398, 'it was good': 4488, 'is the one': 4286, 'entertained': 2521, 'be bad': 1012, 'was wrong': 9400, 'julia': 4573, 'anderson': 625, 'exception': 2629, 'somewhere': 7212, 'cell': 1687, 'the classic': 7809, 'pull the': 6423, 'watch that': 9422, 'touch of': 8995, 'there with': 8413, 'not the best': 5607, 'best of the': 1141, 'to reach': 8873, 'this crap': 8515, 'to forget': 8799, 'apparently': 683, '99': 56, 'bobbi': 1223, 'overcom': 6081, 'not exact': 5575, 'from start': 3102, 'to finish': 8797, 'from start to': 3103, 'start to finish': 7310, 'legendari': 4761, 'uniform': 9127, 'too far': 8975, 'play with': 6248, 'in law': 3930, 'saga': 6730, 'then he': 8365, 'may have been': 5101, 'select': 6903, 'section': 6855, 'shaw': 6972, 'surpris that': 7469, 'to prove': 8870, 'the qualiti': 8152, 'qualiti of': 6446, 'are as': 704, 'see the film': 6873, 'the qualiti of': 8153, 'qualiti of the': 6447, 'it might be': 4424, 'von': 9269, 'work to': 9810, 'but his': 1495, 'whi this': 9599, 'so good': 7132, 'the process': 8146, 'was the first': 9385, 'in the process': 3994, 'elder': 2445, 'films the': 2890, 'of ten': 5760, 'movi from': 5315, 'make good': 5004, 'act by': 116, 'could onli': 1991, 'done the': 2335, 'was my': 9354, 'involv in the': 4118, 'hideous': 3652, 'chew': 1761, 'and run': 532, 'doesn work': 2301, 'in real': 3961, 'and bore': 400, 'music is': 5423, 'ani real': 639, 'the music is': 8071, 'ego': 2441, 'bite': 1192, 'do anyth': 2265, 'the polit': 8134, 'movi of': 5339, 'but at least': 1477, 'movi of the': 5341, 'blown': 1216, 'and doesn': 418, 'kill his': 4638, 'the moral': 8047, 'but he is': 1491, 'favourit': 2752, 'highest': 3658, 'attention': 902, 'confront': 1925, 'wannab': 9289, 'toy': 9003, 'living': 4876, 'pool': 6289, 'psychot': 6418, 'somebodi': 7192, 'jerk': 4537, 'my favourit': 5437, 'film when': 2876, 'age of': 211, 'went into': 9508, 'it tri': 4481, 'littl girl': 4860, 'everyth in': 2604, 'to add': 8722, 'do is': 2267, 'are about': 699, 'and bad': 393, 'of real': 5750, 'about an': 63, 'final scene': 2892, 'will probabl': 9693, 'it tri to': 4482, 'championship': 1701, 'sport': 7278, 'enter': 2517, 'belong to': 1125, 'if someon': 3847, 'decid that': 2110, 'boy who': 1262, 'to escap': 8783, 'has made': 3447, 'role but': 6682, 'of all the': 5676, 'epic': 2530, 'was terrible': 9381, 'her daughter': 3609, 'came from': 1591, 'no longer': 5530, 'grown up': 3354, 'that her': 7631, 'have lot': 3487, 'like all': 4807, 'him he': 3670, 'is terrible': 4277, 'short of': 7008, 'becaus she': 1065, 'the first movie': 7915, 'lean': 4739, 'mate': 5085, 'beer': 1087, 'it obvious': 4433, 'obvious that': 5667, 'movi start': 5350, 'the desert': 7834, 'time they': 8696, 'the game': 7932, 'out that': 6054, 'throughout the movie': 8665, 'as the movi': 818, 'find out that': 2900, 'to rent': 8879, 'last night': 4705, 'prove to': 6410, 'sure it': 7463, 'to realiz': 8875, 'from all': 3091, 'would never': 9853, 'prove to be': 6411, 'linda': 4839, 'material': 5087, 'sullivan': 7444, 'storm': 7365, 'how could': 3787, 'have come': 3475, 'spend the': 7256, 'the hotel': 7965, 'an evil': 360, 'who make': 9650, 'guy with': 3375, 'border': 1237, 'zone': 9999, 'story and': 7367, 'what they': 9546, 'so there': 7149, 'kill by': 4635, 'not say': 5600, 'side of the': 7049, 'the movie but': 8065, 'her best': 3603, 'granted': 3314, 'sign of': 7054, 'bin': 1184, 'another': 654, 'the cover': 7823, 'just about': 4578, 'from one': 3099, 'was go to': 9339, 'go to happen': 3250, 'watch it and': 9420, 'warren': 9307, 'bela': 1110, 'lugosi': 4961, 'fall for': 2703, 'be use': 1044, 'at an': 861, 'are pretti': 728, 'excus for': 2635, 'eye of': 2676, 'who want to': 9658, 'only': 5967, 'cring': 2038, 'she doe': 6978, 'just be': 4583, 'villag': 9249, 'while she': 9620, 'her son': 3623, 'was onli': 9362, 'of the whole': 5799, 'piec of crap': 6211, 'elsewhere': 2458, 'bbc': 1004, 'had never': 3385, 'mind the': 5206, 'and do': 416, 'do someth': 2271, 'instant': 4072, 'the tale': 8243, 'as child': 774, 'is essenti': 4174, 'is lot of': 4216, 'circl': 1797, 'than just': 7577, 'tree': 9027, '2001': 33, 'they would': 8466, 'the the': 8247, 'but we': 1548, 'sinc the': 7075, 'civil': 1803, 'drunken': 2381, 'fight with': 2795, 'civil war': 1804, 'he make': 3549, 'enter the': 2518, 'and actual': 377, 'is excellent': 4178, 'watchabl': 9432, 'consist': 1938, 'way in': 9443, 'obsess with': 5664, 'want to do': 9293, 'educ': 2428, 'believe': 1122, 'was probabl': 9369, 'br however': 1357, 'it almost': 4331, 'br br however': 1306, 'convincing': 1963, 'the locat': 8014, 'take to': 7509, 'noth to do': 5631, 'ages': 213, 'when watch': 9571, 'some peopl': 7182, 'can realli': 1618, 'leagu': 4738, 'core': 1971, 'reason that': 6533, 'is amaz': 4139, 'is awful': 4146, 'station': 7317, 'canada': 1631, 'warning': 9306, 'offend': 5844, 'upset': 9171, 'up there': 9161, 'kid in': 4630, 'and much': 498, 'got it': 3299, 'it right': 4452, 'and everi': 428, 'is told': 4293, 'cheer': 1756, 'you need': 9953, 'on some': 5888, 'not becaus': 5568, 'you ll be': 9946, 'heroin': 3644, 'remak of': 6588, 'was better': 9326, 'better film': 1155, 'and doe': 417, 'scene to': 6802, 'zombie': 9997, 'context': 1947, '1950s': 22, 'insert': 4060, 'artifici': 765, 'evid': 2609, 'invest': 4112, 'helen': 3590, 'karloff': 4613, 'sympathi': 7491, 'war and': 9301, 'the soundtrack': 8215, 'me it': 5118, 'his father': 3696, 'who in': 9641, 'leav it': 4749, 'you the': 9964, 'was no': 9356, 'if you do': 3859, 'there was no': 8409, 'eleph': 2451, 'you br': 9914, 'end with': 2489, 'an episod': 358, 'episod of': 2532, 'you br br': 9915, 'onli thing that': 5965, 'br in the': 1361, 'barri': 989, 'everyone': 2600, 'network': 5498, '90 minut': 55, 'feel sorri': 2767, 'have work': 3518, 'was born': 9328, 'than in': 7575, 'feel sorri for': 2768, 'nice to see': 5519, 'make the movi': 5020, 'june': 4575, 'mani year': 5053, 'almost all': 291, 'everyth that': 2606, 'not make': 5592, 'rank': 6474, 'that anyon': 7594, 'victim of': 9233, 'are you': 746, 'emperor': 2469, 'albeit': 231, 'return of': 6634, 'get in': 3184, 'you enjoy': 9926, 'from my': 3098, 'and the charact': 560, 'of the origin': 5786, 'point of the': 6275, 'in the origin': 3991, 'to be more': 8739, 'on the screen': 5893, 'dave': 2083, 'like to see': 4831, 'vagu': 9193, 'grief': 3341, 'onto': 5968, 'sleazi': 7106, 'keep it': 4619, 'onto the': 5969, 'fear of': 2756, 'so he': 7134, 'bad movie': 970, 'think this is': 8501, 'motiv': 5289, 'lesbian': 4765, 'be at': 1011, 'book is': 1234, 'story it': 7371, 'run around': 6711, 'she seem': 6989, 'are alway': 703, 'who don': 9634, 'first place': 2921, 'bother to': 1251, 'she and': 6974, 'was alway': 9318, 'to end': 8781, 'or someth': 5994, 'to hide': 8816, 'and from': 440, 'the stori and': 8227, 'in the book': 3975, 'the first place': 7917, 'the end the': 7865, 'to do it': 8774, 'take on the': 7504, 'nerd': 5496, 'reel': 6556, 'to complet': 8761, 'the murder': 8069, 'origin film': 6008, 'work out': 9808, 'whether it': 9586, 'the origin film': 8100, 'to tri to': 8935, 'this film it': 8528, 'who enjoy': 9635, 'and fun': 441, 'how did': 3788, 'to begin with': 8746, 'you look for': 9948, 'cheat': 1750, 'year to': 9896, '14': 14, 'contract': 1950, 'loui': 4932, 'kay': 4615, 'pat': 6132, 'contriv': 1954, 'their way': 8347, 'guy is': 3372, 'her first': 3611, 'the like': 8005, 'like of': 4818, 'is even': 4175, 'the like of': 8006, 'elect': 2446, 'worthwhil': 9839, 'can imagin': 1614, 'the cop': 7817, 'it pretti': 4445, 'concentr': 1913, 'the fight': 7891, 'this way': 8617, 'pay for': 6140, 'movi were': 5360, 'effect and': 2432, 'who just': 9643, 'if you look': 3864, 'is movi that': 4221, 'movie if you': 5374, 'amusing': 338, 'be watch': 1046, 'befor they': 1093, 'least the': 4747, 'have noth': 3496, 'at least the': 871, 'is surpris': 4275, 'you won': 9974, 'of the same': 5790, 'distribut': 2259, 'afford': 181, 'on earth': 5872, 'me in': 5116, 'comfort': 1873, 'of our': 5745, 'was meant': 9351, 'for not': 2997, 'to shoot': 8899, 'places': 6230, 'where to': 9581, 'soundtrack is': 7233, 'it could have': 4361, 'kung': 4680, 'fu': 3117, 'disappear': 2238, 'worker': 9813, 'kung fu': 4681, 'had me': 3384, 'break the': 1421, 'of cinema': 5689, 'up this': 9162, 'name of': 5458, 'doesn seem': 2299, 'have gotten': 3483, 'we watch': 9474, 'movie as': 5369, 'learn to': 4744, 'edg of': 2423, 'the name of': 8074, 'lif': 4786, 'numer': 5656, 'rage': 6467, 'littl boy': 4859, 'albert': 232, 'for an': 2969, 'everyon in': 2598, 'was origin': 9363, 'as long': 797, 'peopl like': 6152, 'aka': 226, '00': 0, 'vhs': 9229, 'everywhere': 2608, 'that wasn': 7702, 'worst movi have': 9829, 'the tone': 8262, 'tone of': 8969, 'sandra': 6747, 'los': 4913, 'streisand': 7382, 'monk': 5247, 'you ever': 9927, 'now in': 5640, 'perform are': 6168, 'to meet': 8847, 'she look': 6987, 'will see': 9695, 'not know': 5590, 'true to the': 9053, 'the time of': 8256, 'resid': 6617, 'kurt': 4682, 'this movi are': 8564, 'see if': 6865, 'say to': 6778, 'think about it': 8487, 'choic': 1773, 'failur': 2696, 'movies and': 5386, 'and while': 608, 'realli need': 6526, 'to convinc': 8763, 'or in': 5987, 'worth watching': 9836, 'germani': 3175, 'pieces': 6213, 'wonder what': 9785, 'that way': 7703, 'this for': 8534, 'for real': 3000, 'and tell': 554, 'matthau': 5094, 'duo': 2392, 'tender': 7557, 'couple': 2000, 'ador': 168, 'brazil': 1419, 'object': 5659, 'environ': 2528, 'nevertheless': 5508, 'hidden': 3650, 'threat': 8649, 'all is': 254, 'man to': 5040, 'cours of': 2003, 'that their': 7686, 'didn seem': 2203, 'him as': 3665, 'the open scene': 8096, 'minim': 5210, 'pitch': 6220, 'kill her': 4636, 'he has to': 3539, 'writ': 9867, 'obscur': 5661, 'was real': 9371, 'turn up': 9071, 'make sense': 5015, 'make sens': 5014, 'the time to': 8258, 'poignant': 6268, 'lose his': 4915, 'and find': 436, 'fun and': 3123, 'mob': 5230, 'atmosphere': 891, 'massiv': 5079, 'show was': 7035, 'and show': 540, 'he the': 3563, 'from their': 3109, 'then they': 8371, 'movi doesn': 5310, 'the film doe': 7899, 'of mine': 5727, 'reject': 6569, 'money on': 5245, 'this film are': 8520, 'star trek': 7300, 'wait to': 9276, 'see more': 6868, 'enough of': 2513, 'to see more': 8892, 'shower': 7039, 'ban': 982, 'weapon': 9479, 'for be': 2973, 'the 80': 7716, 'to the plot': 8920, 'in the way': 4004, 'bug': 1455, 'was actual': 9314, 'it appear': 4336, 'gonna': 3264, 'unique': 9131, 'than it': 7576, 'get back': 3180, 'mean the': 5133, 'michell': 5184, 'film have ever': 2829, 'easier': 2413, 'and kill': 477, 'who get': 9636, 'is left': 4212, 'acted': 122, 'brought to': 1446, 'lou': 4930, 'with this one': 9754, 'abc': 58, 'medic': 5145, 'fatal': 2742, 'tea': 7530, 'of the year': 5802, 'more import': 5262, 'big fan': 1177, 'it won': 4506, 'big fan of': 1178, 'about this movi': 78, 'married': 5071, 'involv with': 4120, 'award for': 926, 'matur': 5096, 'never be': 5499, 'bother me': 1250, 'he is the': 3542, 'attach': 893, 'fish': 2926, 'office': 5848, 'joke and': 4561, 'attach to': 894, 'ted': 7538, 'geisha': 3162, 'samurai': 6743, 'from some': 3101, 'is basic': 4150, 'himself in': 3681, 'has becom': 3437, 'in cinema': 3909, 'is nice': 4226, 'hyster': 3825, 'personality': 6187, 'real lif': 6504, 'no reason': 5539, 'to learn': 8829, 'make some': 5016, 'time this': 8697, 'the way it': 8301, 'to play the': 8864, 'it is also': 4398, 'mountain': 5290, 'you who': 9971, 'two peopl': 9089, 'alright': 305, 'the adult': 7729, 'it was veri': 4497, 'revolv': 6645, 'mel': 5150, 'extra': 2670, 'revolv around': 6646, 'after it': 191, 'versus': 9225, 'movi is just': 5325, 'fay': 2753, 'thick': 8470, 'bottom line': 1253, 'gave it': 3157, 'movi is not': 5326, 'dalton': 2063, 'rochest': 6675, 'clark': 1809, '18': 18, 'her act': 3600, 'to hold': 8819, 'she would': 6992, 'be sure': 1037, 'chemistri between': 1760, 'version is': 9222, 'includ the': 4032, 'horrible': 3759, 'text': 7570, 'scienc fiction': 6819, 'the earth': 7852, 'short film': 7007, 'it if you': 4393, 'to recommend': 8877, 'in all the': 3897, 'kyle': 4683, 'betti': 1164, 'are be': 705, 'for each': 2975, 'is shot': 4262, 'actor of': 140, 'who will': 9661, 'from the start': 3108, 'undoubt': 9117, 'madonna': 4984, 'francisco': 3070, 'stand up': 7290, 'but her': 1492, 'the king': 7989, 'about her': 66, 'san francisco': 6745, 'besides': 1133, 'first of all': 2918, 'doesn seem to': 2300, 'extent': 2669, 'in itself': 3929, 'onli that': 5962, 'that an': 7591, 'comment that': 1882, 'big screen': 1179, 'the big screen': 7765, 'franco': 3071, 'experienc': 2653, 'atmospher of': 890, 'is over': 4244, 'my head': 5440, 'where we': 9582, 'like this film': 4826, 'larri': 4703, 'ham': 3402, 'audiences': 908, 'we got': 9465, 'that these': 7690, 'poison': 6284, 'but this one': 1543, 'dreams': 2367, 'she find': 6980, 'is get': 4188, 'with your': 9759, 'times but': 8709, 'but didn': 1483, 'know whi': 4669, 'to the stori': 8923, 'snake': 7123, 'showcas': 7038, 'loss': 4917, 'all three': 279, 'with this movi': 9753, 'you wonder': 9975, 'love to': 4947, 'this film on': 8529, 'professor': 6394, 'questions': 6452, 'hundr of': 3818, 'br anoth': 1274, 'peopl in': 6150, 'his work': 3721, 'are good': 711, 'br br anoth': 1288, 'test': 7568, 'blow': 1215, 'stole': 7345, 'that goe': 7619, 'stand out': 7289, 'can rememb': 1619, 'his brother': 3689, 'in high': 3925, 'interest in the': 4092, 'play in': 6243, 'all have': 250, 'in those': 4016, 'the matrix': 8032, 'controversi': 1956, 'mar': 5060, 'feel as': 2762, 'premis of': 6335, 'vehicl': 9203, 'sever time': 6951, 'moment in': 5238, 'kid and': 4629, 'writer and': 9872, 'moor': 5254, 'wound': 9862, 'peac': 6141, 'was truli': 9394, 'and whi': 607, 'and that the': 557, 'good as the': 3268, 'blank': 1202, 'nois': 5546, 'saturday': 6754, 'has just': 3445, 'as kid': 796, 'over it': 6074, 'arrest': 760, 'is poor': 4248, 'remake': 6589, 'sarah': 6749, 'box offic': 1259, 'to captur': 8754, 'we could': 9460, 'the movi in': 8056, 'dialogu and': 2180, 'maniac': 5054, 'addit': 160, 'score and': 6824, 'the english': 7868, 'appreci the': 695, 'addit to': 161, 'there is also': 8391, 'this is good': 8543, 'the perform are': 8116, 'you need to': 9954, 'movi and the': 5300, 'this movi on': 8573, 'horrid': 3760, 'were veri': 9519, 'combat': 1847, 'stinker': 7343, 'and didn': 413, 'involv the': 4119, 'have fun': 3479, 'place to': 6229, 'and this movi': 582, 'fifteen': 2791, 'sat': 6750, 'never realli': 5505, 'skin': 7097, 'the score': 8187, 'plot to': 6264, 'cruel': 2043, 'of most': 5730, 'the thing that': 8251, '24': 40, '2002': 34, 'don understand': 2323, 'or what': 6000, 'employ': 2470, 'films and': 2886, 'tragedi': 9009, 'gather': 3155, 'bollywood': 1228, 'and believ': 398, 'luckili': 4959, 'is by': 4162, 'is by far': 4163, 'devast': 2168, 'has ever': 3440, 'there and': 8378, 'matter of': 5092, 'stori of the': 7359, 'system': 7492, 'marriag': 5069, 'charli': 1743, 'rave': 6487, 'cruis': 2044, 'othello': 6012, 'the rock': 8170, 'worri about': 9821, 'of modern': 5728, 'to produc': 8868, 'br of': 1373, 'not worth': 5616, 'br br of': 1318, 'seri is': 6926, 'do we': 2276, 'anoth one': 653, 'even worse': 2578, 'same way': 6742, 'have been more': 3473, 'the same way': 8180, 'the planet': 8124, 'whi did': 9590, 'stephen king': 7329, 'murphi': 5419, 'terrorist': 7567, 'believ this': 1120, 'bad thing': 973, 'day and': 2088, 'bad guys': 966, 'to steal': 8909, 'understand how': 9111, 'll never': 4881, 'movi was made': 5359, 'the bad guy': 7747, 'as if they': 790, 'morn': 5274, 'throughout the film': 8664, 'se': 6843, 'great the': 3332, 'and hope': 461, 'veri veri': 9218, 'expectations': 2648, 'effort to': 2440, 'best to': 1146, 'spring': 7281, 'spread': 7280, 'and everyth': 430, 'were in': 9512, 'the child': 7801, 'part and': 6114, 'that in the': 7637, 'is fair': 4180, 'the kill': 7985, 'worth it': 9832, 'end but': 2477, 'better off': 1158, 'it may be': 4422, 'kate': 4614, 'conserv': 1933, 'cain': 1583, 'necessari': 5477, 'is have': 4197, 'discov the': 2249, 'been better': 1080, 'for film': 2980, 'to build': 8751, 'and especi': 425, 'especi if': 2544, 'expect to': 2647, 'but becaus': 1479, 'it has been': 4389, 'watch the film': 9424, 'these film': 8419, 'you are not': 9913, 'cinematography': 1796, 'machine': 4968, 'the list': 8009, 'perform and': 6167, 'time watch': 8700, 'kim': 4644, 'climb': 1821, 'spare': 7241, 'amitabh': 331, 'ag': 199, 'costumes': 1981, 'wrestl': 9866, 'gentl': 3171, 'came across': 1590, 'be in the': 1023, 'little': 4865, 'means': 5136, 'have been better': 3471, 'drivel': 2373, 'onli becaus': 5955, 'just look': 4593, 'the imdb': 7975, 'wasn the': 9404, 'not watch': 5614, 'casual': 1674, 'the edg': 7853, 'the fan': 7885, 'like his': 4812, 'columbo': 1845, 'as did': 775, 'being': 1109, 'outsid the': 6066, 'in no': 3949, 'that some': 7679, 'is classic': 4166, 'ho': 3730, 'young and': 9978, 'it first': 4375, 'that much': 7659, 'maria': 5064, 'but after': 1471, 'and out': 517, '1980': 25, 'tv seri': 9076, 'get an': 3176, 'of watch': 5823, 'also have': 308, 'in the stori': 4000, 'cave': 1685, 'muppet': 5416, 'behav': 1105, 'consist of': 1939, 'one or': 5939, 'he start': 3561, 'give him': 3213, 'insist on': 4066, 'be some': 1036, 'after he': 189, 'the opportun': 8097, 'to save the': 8882, 'happen in the': 3417, 'the opportun to': 8098, 'instanc': 4070, 'film where': 2877, 'when he is': 9559, 'directing': 2229, 'one or two': 5940, 'piece': 6212, 'pair of': 6098, 'one it': 5929, 'film but it': 2814, 'hamilton': 3403, 'life but': 4792, 'to call': 8753, 'he never': 3554, 'are on': 726, 'his wife and': 3720, 'elvira': 2460, 'nowhere': 5645, 'natur and': 5466, 'doc': 2282, 'scientif': 6820, 'no less': 5529, 'some way': 7191, 'the evil': 7874, 'open the': 5972, 'power of': 6321, 'the power of': 8140, 'multipl': 5415, 'cameron': 1598, 'footage': 2965, 'are given': 708, 'the maker': 8024, 'film was made': 2873, 'breathtak': 1424, 'hunter': 3820, 'dragon': 2357, 'run away': 6712, 'our hero': 6032, 'somewher in': 7211, 'on which': 5904, 'in our': 3957, 'all this is': 277, 'toss': 8992, 'ticket': 8674, 'on this one': 5897, 'boll': 1227, 'proof': 6401, 'bag': 976, 'retard': 6631, 'to hate': 8809, 'and quit': 530, 'that ani': 7593, 'over his': 6073, 'and thus': 585, 'to accept': 8719, 'realli make': 6525, 'the fun': 7928, 'directors': 2236, 'long as': 4893, 'wake up': 9279, 'matter what': 5093, 'as long as': 798, 'in the dark': 3977, 'no matter what': 5533, 'time with': 8702, 'this game': 8535, 'get more': 3190, 'much br': 5401, 'was expect': 9335, 'will find': 9685, 'much br br': 5402, 'excit and': 2632, 'degre': 2124, 'poster': 6312, 'combin with': 1850, 'is if': 4203, 'you were': 9970, 'of love': 5722, 'would love': 9850, 'real and': 6503, 'peopl who are': 6158, 'would love to': 9851, 'musician': 5427, 'corni': 1973, 'be done': 1016, 'of emot': 5697, 'br despit': 1347, 'so long': 7139, 'br br despit': 1296, 'for movi': 2994, 'which it': 9608, 'movi can': 5307, 'princess': 6363, 'ralph': 6470, 'bakshi': 978, 'wizard': 9769, 'better in': 1157, 'in addit': 3894, 'impressive': 3892, 'than one': 7579, 'fit in': 2929, 'you must': 9952, 'is ok': 4237, 'anyth els': 670, 'as they are': 821, 'upon the': 9169, 'for your': 3030, 'which would': 9616, 'thing the': 8482, 'doo': 2337, 'to just': 8823, 'this episod': 8518, 'live up': 4872, 'live up to': 4873, 'of old': 5741, 'susan': 7476, 'join the': 4559, 'the author': 7740, 'my vote': 5448, 'the director of': 7844, 'on stage': 5889, 'can watch': 1629, 'stiller': 7341, 'have to admit': 3512, 'the eye': 7878, 'police': 6286, 'generous': 3167, 'of humor': 5714, 'part that': 6120, 'just say': 4598, 'who were': 9660, 'to see if': 8890, 'if they are': 3853, 'in the background': 3973, 'other in': 6020, 'burton': 1467, 'great actor': 3321, 'for what': 3025, 'despit it': 2158, 'dislik': 2253, 'tragedy': 9010, 'allow the': 288, 'the cours': 7821, 'guy that': 3373, 'and pointless': 525, 'would expect': 9842, 'the cours of': 7822, 'point in the': 6272, 'there are so': 8384, 'are so mani': 732, 'take it': 7501, 'young boy': 9979, 'in with': 4027, 'pot': 6313, 'plant': 6237, 'movi which': 5363, 'him out': 3674, 'happens': 3423, 'and crew': 409, 'cast member': 1670, 'with few': 9723, 'come out of': 1861, 'puzzl': 6443, 'proceed to': 6383, 'one would': 5952, 'perri': 6182, 'waitress': 9277, 'expens': 2650, 'much in': 5404, 'who he': 9640, 'choice': 1774, 'ballet': 981, 'and here': 457, 'spoilers br': 7274, 'spoilers br br': 7275, 'feelings': 2772, 'coach': 1835, 'got to be': 3302, 'elizabeth': 2453, 'was when': 9398, 'of see': 5752, 'definit worth': 2123, 'star and': 7296, 'the high': 7959, 'all to': 281, 'on the film': 5891, 'sucks': 7434, 'movi ever made': 5312, 'urban': 9172, 'the trailer': 8267, 'miscast': 5219, 'global': 3232, 'br but the': 1345, 'gas': 3154, 'plagu': 6231, 'night of': 5523, 'done with': 2336, 'and peopl': 521, 'explicit': 2661, 'stay away': 7320, 'film seem': 2859, 'onli good': 5958, 'the onli good': 8091, 'movi to be': 5356, 'in america': 3899, 'modern day': 5234, 'the wild': 8315, 'is with': 4310, 'the end and': 7860, 'br br br': 1293, 'whatsoever': 9556, 'fight for': 2793, 'action film': 128, 'movie which': 5383, 'spin': 7261, 'film making': 2849, 'dinosaur': 2221, 'lab': 4685, 'blob': 1208, 'know you': 4671, 'far away': 2728, 'give them': 3217, '2006': 37, 'how she': 3793, 'which she': 9610, 'in the last': 3984, 'more fun': 5261, 'pin': 6218, 'after his': 190, 'much for': 5403, 'in real life': 3962, 'notic that': 5634, 'domin': 2306, 'blunt': 1218, 'would recommend': 9856, 'believ that the': 1118, 'clint': 1822, 'as part': 805, 'after see': 192, 'as part of': 806, 'realli do': 6517, 'creep': 2031, 'emma': 2464, 'her sister': 3622, 'jesus': 4541, 'to your': 8954, 'out it': 6044, 'it fail': 4372, 'find his': 2897, 'stronger': 7391, 'to carri': 8756, 'find himself': 2896, 'befor and': 1089, 'jeremi': 4536, 'watch as': 9411, 'he goe': 3535, 'the bar': 7749, 'moment in the': 5239, 'to pick': 8862, 'watch the movie': 9426, 'span': 7239, 'oh my': 5853, 'the zombi': 8338, 'on video': 5902, 'problem with this': 6380, 'to fight': 8789, 'akshay': 227, 'werewolf': 9521, '16': 16, 'the purpos': 8151, 'it be': 4341, 'her boyfriend': 3604, 'wonder whi': 9786, 'the brother': 7777, 'romero': 6695, 'dawn': 2086, 'not wast': 5613, 'shirley': 7000, 'are tri': 741, 'to get out': 8801, 'satan': 6751, 'engin': 2498, 'write and': 9869, 'in the lead': 3986, 'there is some': 8397, 'for what it': 3026, 'rex': 6648, 'that didn': 7610, 'greek': 3336, 'swedish': 7483, 'this documentari': 8517, 'impress with': 3891, 'actor play': 141, 'tame': 7520, 'that could have': 7608, 'who could': 9631, 'and probabl': 528, 'this one was': 8589, 'concerned': 1917, 'the team': 8245, 'not go to': 5581, 'the fight scene': 7892, 'to give it': 8805, 'status': 7318, 'late night': 4707, 'victims': 9234, 'credit for': 2029, 'this movi becaus': 8567, 'item': 4514, 'griffith': 3342, 'favour': 2751, 'is kill': 4211, 'been so': 1085, 'and those': 583, 'that it would': 7646, 'was his': 9342, 'most import': 5276, 'is wast': 4303, 'ever see': 2586, 'speci': 7245, 'in few': 3917, 'however is': 3802, 'scale': 6781, 'someth else': 7200, 'no other': 5536, 'fix': 2933, 'plot the': 6263, 'song are': 7218, 'panic': 6101, 'weak and': 9477, 'suspens and': 7479, 'lead man': 4733, 'st': 7282, 'took the': 8983, 'movie it was': 5377, 'to watch and': 8943, 'psychic': 6415, 'company': 1893, 'score is': 6826, 'they must': 8451, 'dirti': 2237, 'br at': 1278, 'have no idea': 3493, 'br br at': 1291, 'ritter': 6666, 'adequ': 163, 'the success': 8239, 'an all': 345, 'off br': 5835, 'off br br': 5836, 'go in': 3242, 'they come': 8428, 'you see the': 9960, 'karen': 4612, 'what could': 9529, 'out br': 6036, 'out br br': 6037, 'ugly': 9095, 'film seen': 2860, 'br out': 1378, 'br br out': 1322, 'br out of': 1379, 'fourth': 3066, 'hate the': 3463, 'place the': 6228, 'director who': 2234, 'pound': 6316, 'can have': 1611, 'bus': 1468, 'oil': 5855, 'usa': 9179, 'but at the': 1478, 'mexico': 5180, 'earl': 2405, 'viewing': 9248, 'as such': 814, 'can easili': 1605, 'times br': 8707, 'times br br': 8708, 'awesom': 934, 'communic': 1888, 'she goe': 6982, 'time as': 8681, 'and both': 401, 'swim': 7485, 'with two': 9755, 'naturally': 5468, 'of action': 5674, 'here we': 3640, 'iran': 4122, 'have good': 3482, 'sinc this': 7076, 'in the series': 3999, 'the dialog': 7836, 'mann': 5056, 'also be': 306, 'driver': 2375, 'torment': 8988, 'bradi': 1413, 'and leav': 481, 'of whom': 5826, 'babe': 938, 'could see': 1992, 'hero and': 3642, 'foul': 3056, 'natali': 5462, 'depart': 2136, 'trip to': 9045, 'thought was': 8646, 'bourn': 1257, 'the entir movi': 7871, 'have gone': 3481, 'film or': 2856, 'stomach': 7347, 'wish that': 9712, 'ed wood': 2420, 'follow by': 2957, 'inherit': 4055, 'for sure': 3006, 'in case': 3908, 'plot that': 6262, 'didn care': 2196, 'victoria': 9236, 'peopl in the': 6151, 'hamlet': 3404, 'branagh': 1415, 'the husband': 7971, 'icon': 3827, 'earli on': 2407, 'said the': 6734, 'talent and': 7514, 'is better': 4154, 'sens of humor': 6911, 'so if you': 7136, 'give this film': 3219, 'to our': 8859, 'navi': 5470, 'inside': 4063, 'unforgett': 9122, 'guns': 3367, 'derek': 2144, 'what the hell': 9545, 'spielberg': 7259, 'this show is': 8602, 'vision of': 9261, 'it is about': 4397, 'anticip': 659, 'substanc': 7418, 'know he': 4658, 'the heart of': 7954, 'the mind': 8040, 'movi of all': 5340, 'nuclear': 5647, 'dark and': 2077, 'disguis': 2251, 'off his': 5838, 'dialog is': 2178, 'explain the': 2658, 'han': 3406, 'whi doe': 9592, 'if it were': 3842, 'this is what': 8551, 'even if it': 2566, 'for everyone': 2976, 'while watch': 9624, 'lane': 4698, 'walk around': 9281, 'ruthless': 6722, 'or to': 5998, 'than anyth': 7573, 'height': 3588, 'dire': 2222, 'absorb': 91, 'they find': 8438, 'screen in': 6832, 'this man': 8559, 'tarzan': 7524, 'he not': 3555, 'the dog': 7846, 'to get to': 8803, 'the daughter': 7829, 'dose': 2341, 'and john': 474, 'his mind': 3707, 'the media': 8034, 'never see': 5506, 'and lack': 478, 'on me': 5884, 'punk': 6426, 'it kind': 4412, 'too br': 8972, 'too br br': 8973, 'confusing': 1928, 'emerg': 2463, 'more on': 5267, 'an adult': 344, 'safe': 6729, 'muslim': 5428, '70s': 51, 'wet': 9525, 'seagal': 6845, 'blast': 1203, 'inspector': 4067, 'reach the': 6492, 'elvi': 2459, 'diamond': 2183, 'rob roy': 6671, 'and his wife': 460, 'in the final': 3982, 'farm': 2735, 'next time': 5514, 'jake': 4522, 'jungl': 4576, 'firm': 2911, 'miik': 5197, 'punish': 6425, 'timon': 8710, 'in common': 3910, 'his family': 3695, 'virginia': 9257, 'your heart': 9987, 'grinch': 3344, 'the grinch': 7944, 'ruth': 6721, 'neo': 5495, 'kill them': 4641, 'is better than': 4155, 'betti page': 1165, 'che': 1748}

-------------------------

CountVectorizer
/usr/local/lib/python3.7/dist-packages/sklearn/utils/deprecation.py:87: FutureWarning: Function get_feature_names is deprecated; get_feature_names is deprecated in 1.0 and will be removed in 1.2. Please use get_feature_names_out instead.
  warnings.warn(msg, category=FutureWarning)
[[0 0 0 ... 0 0 0]
 [0 0 0 ... 0 0 0]
 [0 0 0 ... 0 0 0]
 ...
 [0 0 0 ... 0 0 0]
 [0 0 0 ... 0 0 0]
 [0 0 0 ... 0 1 0]]

-------------------------

TF-IDF
[6.52156091 5.76778911 3.00703485 ... 6.68407984 6.1673891  6.18508868]
10000

-------------------------

Predictions
[1 0 1 ... 1 0 1]


---- Classification report ----
              precision    recall  f1-score   support

     positif       0.84      0.85      0.85      1267
     negatif       0.84      0.84      0.84      1233

    accuracy                           0.84      2500
   macro avg       0.84      0.84      0.84      2500
weighted avg       0.84      0.84      0.84      2500

Partie du discours

Pour généraliser, on peut aussi utiliser les parties du discours (Part of Speech, POS) des mots, ce qui nous permettra de filtrer l'information qui n'est potentiellement pas utile au modèle. On va récupérer les POS des mots à l'aide des fonctions pos_tag, word_tokenize.

In [39]:
import nltk
from nltk import pos_tag, word_tokenize

Exemple d'utilisation:

In [40]:
import nltk
nltk.download('punkt')
nltk.download('averaged_perceptron_tagger')

pos_tag(word_tokenize(('I am Sam')))
[nltk_data] Downloading package punkt to /root/nltk_data...
[nltk_data]   Unzipping tokenizers/punkt.zip.
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data]     /root/nltk_data...
[nltk_data]   Unzipping taggers/averaged_perceptron_tagger.zip.
Out[40]:
[('I', 'PRP'), ('am', 'VBP'), ('Sam', 'NNP')]

Transformation des données:

Ne garder que les noms, adverbes, verbes et adjectifs (['NN', 'VB', 'ADJ', 'RB']) pour notre modèle.

In [41]:
def pos_tag_filter(sentence, good_tags=['NN', 'VB', 'ADJ', 'RB']):
# To complete !
  sentence_tokenized = word_tokenize(sentence)

  list_tag = pos_tag(sentence_tokenized)

  list_accepted_pos_tag = list()

  for tag in list_tag:
    if tag[1] in good_tags:
      list_accepted_pos_tag.append(tag)
  
  return list_accepted_pos_tag

Test de la fonction pos_tagfilter

In [42]:
# Test it on the dataset
sentence = train_texts_reduced[0] # test on the first sentence of our dataset
print("--- Original phrase ---")
print(sentence)

print("\n\n--- Pos Tags ---")
pos_tag_filter(sentence)
--- Original phrase ---
Story of a man who has unnatural feelings for a pig. Starts out with a opening scene that is a terrific example of absurd comedy. A formal orchestra audience is turned into an insane, violent mob by the crazy chantings of it's singers. Unfortunately it stays absurd the WHOLE time with no general narrative eventually making it just too off putting. Even those from the era should be turned off. The cryptic dialogue would make Shakespeare seem easy to a third grader. On a technical level it's better than you might think with some good cinematography by future great Vilmos Zsigmond. Future stars Sally Kirkland and Frederic Forrest can be seen briefly.


--- Pos Tags ---
Out[42]:
[('Story', 'NN'),
 ('man', 'NN'),
 ('pig', 'NN'),
 ('opening', 'NN'),
 ('scene', 'NN'),
 ('example', 'NN'),
 ('comedy', 'NN'),
 ('orchestra', 'NN'),
 ('audience', 'NN'),
 ('insane', 'NN'),
 ('mob', 'NN'),
 ('Unfortunately', 'RB'),
 ('time', 'NN'),
 ('eventually', 'RB'),
 ('just', 'RB'),
 ('too', 'RB'),
 ('Even', 'RB'),
 ('era', 'NN'),
 ('be', 'VB'),
 ('dialogue', 'NN'),
 ('make', 'VB'),
 ('seem', 'VB'),
 ('grader', 'NN'),
 ('level', 'NN'),
 ('think', 'VB'),
 ('cinematography', 'NN'),
 ('be', 'VB'),
 ('briefly', 'NN')]

Construction d'une fonction de preprocessing pour stemmatiser et filter les tags notre corpus de texte

In [54]:
def preprocess_stem_filter(text):
    list_words = text.split(" ")
    
    # on stemmatise la phrase
    text_1 = ' '.join([stemmer.stem(word) for word in list_words])

    # On garde uniquement les mots associés aux bons tags
    text_2 = pos_tag_filter(text_1, good_tags=['NN', 'VB', 'ADJ', 'RB'])

    # Reconstruction la phrase
    text_3 = " ".join([i[0] for i in text_2])

    return text_3
In [58]:
text_train_stemmed_filtered = list()
for elm in train_texts_splt:
  elm_preprocessed = preprocess_stem_filter(elm)
  text_train_stemmed_filtered.append(elm_preprocessed)

print(len(text_train_stemmed_filtered))
10000

On appique la pipeline {CountVectorizer, TF-IDF, MultinomialNB}

In [59]:
pipe = Pipeline([('vec_count', CountVectorizer(max_features= 10000, analyzer='word', max_df=0.2, ngram_range=(1,3))), 
                 ('tfidf', TfidfTransformer()),
                 ('clf', MultinomialNB())
                 ])

pipe.fit(text_train_stemmed_filtered, train_labels_splt)

print("features names")
feat_names = pipe['vec_count'].get_feature_names()

print("\n-------------------------\n")

print("Vocabulary")
vocab = pipe['vec_count'].vocabulary_
print(vocab)

print("\n-------------------------\n")

print("CountVectorizer")
vec_count = pipe['vec_count'].transform(text_train_stemmed_filtered).toarray()
print(vec_count)

print("\n-------------------------\n")

print("TF-IDF")
tf_idf = pipe['tfidf'].idf_
print(tf_idf)
print(len(tf_idf))

print("\n-------------------------\n")

# Make predictions
predictions = pipe.predict(val_texts)

print("Predictions")
print(predictions)

# Show the results in a readable format
print("\n\n---- Classification report ----")

report_classification = classification_report(val_labels, predictions, target_names=["positif", "negatif"], output_dict=True)

print(classification_report(val_labels, predictions, target_names=["positif", "negatif"]))

cm = confusion_matrix(val_labels, predictions)
cm_disp = ConfusionMatrixDisplay(cm, display_labels=["positif", "negatif"])

cm_disp.plot()
plt.show()
features names

-------------------------

Vocabulary
{'ever': 3173, 'middle': 5778, 'comedi': 2125, 'everi': 3195, 'speak': 8415, 'minut': 5817, 'origin': 6657, 'ani': 341, 'humor': 4576, 'vulgar': 9538, 'irrit': 4805, 'advertis': 152, 'robin': 7647, 'william': 9803, 'capit': 1734, 'fame': 3332, 'televis': 8851, 'series': 8017, 'role': 7667, 'movi ever': 6004, 'just be': 4961, 'everi time': 3200, 'minut movie': 5824, 'robin william': 7648, 'role be': 7668, 'be so': 789, 'so not': 8307, 'not even': 6394, 'mani': 5609, 'action': 84, 'star': 8495, 'tv': 9336, 'tape': 8818, 'tripe': 9303, 'bizarr': 971, 'reason': 7409, 'blame': 982, 'something': 8366, 'uniqu': 9386, 'hype': 4594, 'joel': 4905, 'silver': 8165, 'touch': 9226, 'want': 9561, 'first': 3717, 'onli': 6616, 'valu': 9418, 'entir': 3076, 'zane': 9989, 'lift': 5315, 'perform': 6857, 'seem': 7979, 'know': 5130, 'do': 2728, 'here': 4391, 'though': 9040, 'writing': 9921, 'quit': 7289, 'frankly': 3824, 'let': 5260, 'take': 8792, 'idea': 4600, 'rat': 7335, 'race': 7297, 'enemi': 3032, 'state': 8515, 'run': 7726, 'gambl': 3891, 'think': 9014, 'simpli': 8171, 'rehash': 7468, 'chase': 1928, 'sequenc': 8007, 'row': 7714, 'man': 5583, 'hour': 4539, 'strength': 8636, 'cast': 1784, 'director': 2655, 'mention': 5739, 'dure': 2865, 'jock': 4901, 'veri': 9447, 'shoulder': 8112, 'weight': 9700, 'never': 6285, 'care': 1746, 'die': 2622, 'mid': 5773, 'through': 9051, 'provid': 7231, 'audienc': 526, 'routin': 7712, 'realli': 7381, 'root': 7701, 'dream': 2821, 'compar': 2161, 'wooden': 9849, 'van': 9424, 'howard': 4553, 'tell': 8854, 'pretend': 7142, 'termin': 8873, 'half': 4207, 'quot': 7295, 'performance': 6868, 'dramat': 2817, 'depth': 2565, 'camera': 1708, 'dark': 2455, 'light': 5316, 'day': 2469, 'suck': 8692, 'screen': 7892, 'bauer': 657, 'show': 8115, 'life': 5289, 'bit': 958, 'part': 6752, 'ultimately': 9365, 'lead': 5227, 'ensembl': 3063, 'solo': 8348, 'task': 8823, 'colleagu': 2098, 'jare': 4855, 'elliot': 2961, 'luck': 5487, 'characterization': 1915, 'jeff': 4865, 'welch': 9703, 'script': 7902, 'someon': 8355, 'away': 558, 'befor': 864, 'hurt': 4588, 'anyon': 381, 'else': 2963, 'finally': 3698, 'reach': 7364, 'complet': 2175, 'action star': 93, 'thing be': 8979, 'movie so': 6164, 'want make': 9567, 'br first': 1374, 'entir film': 3077, 'way even': 9655, 'know do': 5136, 'do br': 2732, 'film think': 3664, 'cast director': 1792, 'veri well': 9468, 'film quit': 3620, 'pretend be': 7143, 'half film': 4208, 'think so': 9026, 'be onli': 758, 'show life': 8130, 'part br': 6755, 'cast have': 1794, 'have do': 4281, 'not have': 6417, 'anyon else': 382, 'br br first': 1184, 'do br br': 2733, 'part br br': 6756, 'comedy': 2131, 'cult': 2397, 'edit': 2919, 'ray': 7357, 'moore': 5917, 'if': 4617, 'school': 7865, 'karat': 5052, 'anymore': 380, 'famili': 3333, 'site': 8200, 'extrem': 3287, 'help': 4375, 'right': 7611, 'now': 6525, 'stay': 8520, 'world': 9881, 'thank': 8894, 'recommend': 7433, 'word': 9852, 'check': 1934, 'line': 5335, 'lot': 5428, 'comment': 2140, 'point': 7045, 'not comedy': 6383, 'movi make': 6045, 'right now': 7616, 'just take': 5025, 'comment movi': 2145, 'movi point': 6071, 'outsid': 6689, 'motel': 5936, 'room': 7698, 'costum': 2289, 'string': 8640, 'sex': 8039, 'scenes': 7858, 'cinema': 2003, 'not onli': 6453, 'see movie': 7962, 'movie movi': 6151, 'movi watch': 6119, 'scenes br': 7859, 'cinema br': 2004, 'scenes br br': 7860, 'cinema br br': 2005, 'theater': 8902, 'arizona': 431, 'enjoy': 3045, 'rememb': 7493, 'barbara': 622, 'ventur': 9443, 'rock': 7653, 'sound': 8400, 'success': 8689, 'fan': 3338, 'effort': 2935, 'west': 9751, 'actor': 96, 'romance': 7687, 'judi': 4944, 'garland': 3909, 'version': 9469, 'janet': 4852, 'chang': 1859, 'dvd': 2879, 'release': 7479, 'helicopt': 4369, 'shot': 8109, 'pack': 6712, 'sun': 8711, 'devil': 2608, 'stadium': 8475, 'wish': 9820, 'job': 4896, 'music': 6210, 'kris': 5154, 'god': 4086, 'song': 8376, 'there': 8953, 'inform': 4700, 'primari': 7156, 'sourc': 8405, 'problem': 7175, 'interview': 4780, 'documentary': 2756, 'boat': 1013, 'journey': 4934, 'stephen': 8530, 'singer': 8186, 'profession': 7197, 'person': 6883, 'tie': 9065, 'bonni': 1033, 'john': 4907, 'band': 616, 'turn': 9327, 'pop': 7073, 'score': 7881, 'pass': 6774, 'friend': 3834, 'member': 5731, 'tension': 8871, 'set': 8027, 'presence': 7132, 'effect': 2927, 'talk': 8813, 'back': 576, 'roll': 7683, 'around': 439, 'decid': 2505, 'use': 9400, 'work': 9856, 'gain': 3887, 'respect': 7540, 'artist': 455, 'hear': 4348, 'story': 8610, 'gay': 3915, 'movi theater': 6100, 'realli enjoy': 7385, 'so time': 8330, 'rememb time': 7494, 'judi garland': 4945, 'dvd release': 2884, 'there br': 8956, 'br line': 1410, 'rock roll': 7656, 'perform movi': 6866, 'thing work': 9013, 'boy': 1079, 'interest': 4753, 'creat': 2342, 'mom': 5875, 'video': 9488, 'love': 5450, 'attempt': 511, 'pathet': 6785, 'as': 457, 'mean': 5707, 'hey': 4419, 'budget': 1637, 'flick': 3746, 'still': 8541, 'case': 1776, 'doom': 2780, 'taste': 8825, 'perhap': 6871, 'awak': 554, 'one': 6604, 'br interest': 1397, 'interest thing': 4769, 'thing movi': 8999, 'effect use': 2934, 'even way': 3166, 'way so': 9674, 'so love': 8300, 'love movie': 5463, 'movie br': 6132, 'br not': 1443, 'not end': 6391, 'as well': 468, 'still make': 8556, 'make movi': 5554, 'movi budget': 5983, 'budget movi': 1641, 'br br interest': 1203, 'movie br br': 6133, 'br br not': 1237, 'cartoon': 1773, 'background': 594, 'color': 2107, 'art': 447, 'anim': 349, 'studio': 8654, 'standard': 8490, 'however': 4556, 'number': 6549, 'scott': 7887, 'suppos': 8735, 'setting': 8032, 'up': 9392, 'monoton': 5903, 'sinc': 8179, 'includ': 4669, 'close': 2059, 'eye': 3290, 'averag': 547, 'viewer': 9496, 'storyline': 8620, 'give': 4029, 'secret': 7929, 'alreadi': 254, 'countri': 2296, 'theme': 8910, 'era': 3094, 'nostalgia': 6359, 'lot be': 5430, 'br music': 1437, 'music not': 6218, 'suppos be': 8736, 'not give': 6414, 'br br music': 1232, 'doubt': 2788, 'about': 10, 'year': 9936, 'sometim': 8369, 'rape': 7331, 'shock': 8097, 'today': 9157, 'begin': 873, 'experi': 3261, 'haunt': 4270, 'rest': 7544, 'tortur': 9222, 'conscienc': 2222, 'worri': 9894, 'bodi': 1016, 'river': 7630, 'live': 5371, 'histori': 4445, 'smart': 8243, 'brilliant': 1601, 'jon': 4923, 'voight': 9526, 'burt': 1666, 'magnific': 5528, 'base': 634, 'novel': 6521, 'lover': 5477, 'ever time': 3193, 'about year': 12, 'rape scene': 7332, 'movi today': 6107, 'realli movi': 7393, 'movi realli': 6078, 'way thing': 9678, 'end end': 3001, 'end movi': 3009, 'br act': 1086, 'act also': 51, 'jon voight': 4924, 'movi movi': 6052, 'movi base': 5971, 'see movi': 7961, 'br br act': 1120, 'deal': 2485, 'age': 178, 'encount': 2990, 'potenti': 7098, 'format': 3796, 'suggest': 8701, 'health': 4346, 'face': 3300, 'trauma': 9263, 'disease': 2691, 'primarili': 7157, 'patient': 6788, 'heart': 4350, 'struggle': 8647, 'portray': 7083, 'command': 2138, 'movi ani': 5964, 'plot line': 7023, 'admit': 142, 'scarecrow': 7818, 'tone': 9177, 'mayb': 5686, 'much': 6185, 'cheesy': 1943, 'beautiful': 831, 'factor': 3315, 'sever': 8036, 'view': 9494, 'sheriff': 8085, 'drunk': 2846, 'boyfriend': 1085, 'yes': 9964, 'quit bit': 7291, 'not mention': 6438, 'here get': 4399, 'get end': 3959, 'budget movie': 1642, 'movie veri': 6171, 'thug': 9056, 'kill': 5098, 'doctor': 2752, 'realiz': 7379, 'plague': 6975, 'nasti': 6251, 'find': 3701, 'contact': 2235, 'treat': 9271, 'immediately': 4639, 'disast': 2681, 'oddly': 6571, 'seri': 8012, 'lectur': 5240, 'fact': 3305, 'peopl': 6823, 'ill': 4621, 'grotesqu': 4158, 'fever': 3430, 'bleed': 988, 'vomit': 9529, 'blood': 1000, 'enorm': 3053, 'understand': 9374, 'go': 4062, 'far': 3351, 'feder': 3400, 'govern': 4113, 'involv': 4796, 'control': 2252, 'level': 5276, 'believ': 889, 'acting': 80, 'richard': 7599, 'widmark': 9794, 'paul': 6796, 'dougla': 2789, 'respectively': 7541, 'chief': 1958, 'menac': 5736, 'jack': 4827, 'palanc': 6724, 'walter': 9555, 'mostel': 5934, 'scari': 7820, 'typic': 9360, 'earli': 2894, 'sort': 8394, 'evil': 3217, 'despit': 2588, 'detail': 2597, 'wrap': 9906, 'littl': 5359, 'man also': 5584, 'time find': 9092, 'histori film': 4446, 'film realli': 3623, 'realli not': 7396, 'not do': 6387, 'do job': 2738, 'have show': 4322, 'also lot': 271, 'have much': 4307, 'much much': 6191, 'film actor': 3450, 'richard widmark': 7600, 'actor also': 99, 'also actor': 257, 'however film': 4559, 'still go': 8551, 'well time': 9740, 'br despit': 1346, 'not get': 6413, 'littl too': 5368, 'film well': 3682, 'br br despit': 1161, 'screenplay': 7899, 'book': 1037, 'lucill': 5486, 'ball': 612, 'mistak': 5848, 'biopic': 954, 'rang': 7324, 'write': 9916, 'list': 5350, 'jr': 4937, 'tri': 9277, 'aw': 552, 'sloppi': 8236, 'movi never': 6057, 'never book': 6291, 'never so': 6312, 'not be': 6370, 'be anyon': 668, 'film tri': 3669, 'moment': 5876, 'decision': 2509, 'danger': 2450, 'crimin': 2362, 'dumb': 2858, 'amount': 317, 'money': 5888, 'bank': 618, 'whi': 9767, 'shoot': 8101, 'grab': 4117, 'fli': 3745, 'chick': 1956, 'illog': 4624, 'behavior': 882, 'landscap': 5186, 'scenery': 7857, 'get away': 3946, 'give movi': 4040, 'just give': 4982, 'sad': 7746, 'product': 7187, 'quality': 7276, 'hold': 4462, 'center': 1835, 'miseri': 5839, 'nuanc': 6545, 'eddi': 2913, 'rescu': 7527, 'howev': 4554, 'follow': 3769, 'conclus': 2200, 'say': 7799, 'deserv': 2580, 'cinemat': 2007, 'enough': 3054, 'afternoon': 164, 'film product': 3619, 'even well': 3167, 'well actor': 9706, 'get so': 3992, 'say film': 7803, 'be enough': 705, 'misfortun': 5843, 'catch': 1808, 'morning': 5929, 'empti': 2989, 'chronicl': 1996, 'embarrass': 2973, 'project': 7205, 'cost': 2288, 'really': 7404, 'share': 8065, 'buffalo': 1644, 'record': 7442, 'harvest': 4264, 'mirror': 5835, 'sadly': 7748, 'simplist': 8174, 'polit': 7066, 'merit': 5745, 'forgotten': 3794, 'buy': 1683, 'contribut': 2250, 'account': 37, 'up film': 9393, 'film back': 3465, 'really br': 7405, 'really br br': 7406, 'cd': 1824, 'store': 8579, 'kinda': 5116, 'regret': 7467, 'start': 8509, 'horror': 4519, 'horribl': 4516, 'entertainment': 3073, 'entertain': 3069, 'becaus': 836, 'fun': 3857, 'style': 8665, 'manner': 5622, 'easily': 2904, 'honestly': 4492, 'side': 8151, 'lighting': 5317, 'editing': 2921, 'mother': 5937, 'fit': 3727, 'dinner': 2645, 'consequ': 2224, 'charg': 1919, 'eat': 2907, 'food': 3775, 'dialogu': 2612, 'meal': 5706, 'pure': 7257, 'outside': 6690, 'appar': 408, 'darkness': 2457, 'lit': 5353, 'frustrat': 3850, 'anything': 394, 'climact': 2047, 'contain': 2236, 'reveal': 7571, 'surpris': 8745, 'come': 2116, 'sense': 7993, 'ruin': 7722, 'twenti': 9346, 'rewind': 7592, 'anyth': 388, 'better': 931, 'commentari': 2148, 'track': 9235, 'crap': 2328, 'fan horror': 3341, 'movi entertain': 6002, 'half hour': 4209, 'becaus so': 851, 'so be': 8267, 'be fun': 718, 'then br': 8918, 'act part': 67, 'part movie': 6761, 'movie act': 6127, 'act not': 66, 'br movi': 1429, 'movi way': 6120, 'way too': 9679, 'part movi': 6760, 'problem movi': 7178, 'movi so': 6091, 'see go': 7954, 'be see': 783, 'see so': 7970, 'so br': 8271, 'reason see': 7416, 'see come': 7947, 'movi find': 6016, 'have thing': 4325, 'thing br': 8981, 'then br br': 8919, 'br br movi': 1228, 'so br br': 8272, 'thing br br': 8982, 'admir': 141, 'sheet': 8078, 'drive': 2835, 'enthusiasm': 3074, 'making': 5578, 'unfortunately': 9381, 'zombi': 9992, 'bloodbath': 1002, 'trilog': 9299, 'imdb': 4636, 'rate': 7336, 'group': 4160, 'student': 8651, 'event': 3169, 'armi': 434, 'locat': 5377, 'heavili': 4361, 'liber': 5283, 'bomb': 1026, 'deliv': 2537, 'yet': 9966, 'cgi': 1843, 'front': 3845, 'cardboard': 1745, 'space': 8409, 'trademark': 9238, 'gore': 4107, 'hand': 4222, 'pull': 7244, 'victim': 9484, 'twist': 9351, 're': 7361, 'onc': 6600, 'what': 9756, 'again': 166, 'br part': 1459, 'br finally': 1372, 'twist end': 9352, 're watch': 7362, 'begin film': 875, 'watch again': 9601, 'br br part': 1248, 'br br finally': 1182, 'flight': 3750, 'pressur': 7139, 'emphasi': 2984, 'woman': 9831, 'fall': 3328, 'together': 9163, 'ok': 6588, 'laugh': 5206, 'predict': 7120, 'destin': 2591, 'but': 1677, 'parrot': 6750, 'funny': 3871, 'summari': 8709, 'stare': 8508, 'seat': 7925, 'call': 1703, 'br idea': 1395, 'idea film': 4604, 'fall love': 3331, 'film as': 3461, 'actor work': 121, 'work well': 9879, 'about as': 11, 'part stori': 6766, 'stori have': 8587, 'have work': 4332, 'lot talk': 5441, 'idea be': 4601, 'film interest': 3550, 'br br idea': 1201, 'romanc': 7686, 'stereotyp': 8531, 'impact': 4643, 'snap': 8253, 'nice': 6320, 'player': 7000, 'mgm': 5761, 'wife': 9796, 'businessman': 1674, 'grate': 4135, 'impression': 4655, 'comedi not': 2129, 'film so': 3642, 'so even': 8277, 'back then': 590, 'br cast': 1334, 'work have': 9867, 'br be': 1111, 'littl film': 5362, 'film perform': 3606, 'product valu': 7190, 'br br be': 1139, 'while': 9779, 'amaz': 305, 'anybodi': 376, 'rais': 7311, 'kind': 5109, 'talent': 8811, 'crappi': 2331, 'amazing': 307, 'onc while': 6602, 'amaz film': 306, 'film be': 3467, 'be world': 817, 'money make': 5894, 'ago': 183, 'title': 9152, 'candi': 1721, 'credit': 2352, 'entri': 3081, 'name': 6243, 'crime': 2360, 'someth': 8361, 'bell': 898, 'click': 2042, 'read': 7367, 'pretti': 7145, 'rather': 7343, 'riff': 7609, 'hitchcock': 4453, 'formula': 3797, 'ident': 4610, 'amongst': 315, 'coupl': 2303, 'dog': 2765, 'vacat': 9410, 'europ': 3114, 'return': 7566, 'reward': 7591, 'mix': 5858, 'mad': 5513, 'feature': 3399, 'eugen': 3113, 'film credit': 3492, 'pretti well': 7147, 'despit fact': 2590, 'fact not': 3313, 'not mean': 6437, 'movi cast': 5986, 'onli find': 6619, 'br kind': 1402, 'star movi': 8501, 'br br kind': 1207, 'hit': 4451, 'soon': 8381, 'blockbuster': 996, 'loser': 5425, 'sweet': 8764, 'sacrific': 7744, 'hero': 4411, 'ladi': 5177, 'gandhi': 3897, 'tag': 8788, 'attitud': 520, 'thought': 9041, 'henc': 4380, 'crass': 2333, 'stupid': 8663, 'funni': 3869, 'hair': 4206, 'cant': 1728, 'cinematographi': 2009, 'grace': 4118, 'lyric': 5504, 'anyway': 396, 'movi love': 6044, 'line movi': 5340, 'cult movi': 2398, 'movi have': 6028, 'act movi': 65, 'movie also': 6129, 'br anyway': 1100, 'movi veri': 6114, 'charm': 1926, 'spencer': 8426, 'traci': 9234, 'beauti': 828, 'loretta': 5422, 'girl': 4021, 'play': 6988, 'child': 1959, 'focus': 3764, 'zoom': 9997, 'beauty': 833, 'bill': 947, 'transform': 9254, 'support': 8728, 'arthur': 452, 'glenda': 4052, 'farrel': 3368, 'leav': 5238, 'impress': 4653, 'long': 5389, 'fascin': 3370, 'figur': 3443, 'camp': 1713, 'fetch': 3429, 'lone': 5387, 'depress': 2563, 'surviv': 8751, 'tale': 8809, 'movie say': 6161, 'say just': 7805, 'interest way': 4771, 'way br': 9650, 'run time': 7730, 'time act': 9070, 'watch enjoy': 9610, 'enjoy film': 3048, 'film br': 3477, 'be find': 716, 'make movie': 5555, 'fact movi': 3311, 'mani time': 5617, 'br play': 1465, 'here br': 4394, 'br support': 1514, 'support actor': 8729, 'view film': 9495, 'br stori': 1511, 'far fetch': 3356, 'way br br': 9651, 'film br br': 3478, 'br br play': 1253, 'here br br': 4395, 'br br support': 1299, 'br br stori': 1296, 'kudo': 5158, 'writer': 9918, 'drama': 2813, 'develop': 2603, 'team': 8835, 'feel': 3402, 'emot': 2978, 'decis': 2508, 'cerebr': 1839, 'opportun': 6639, 'filmmak': 3690, 'breath': 1582, 'wood': 9848, 'shop': 8105, 'persona': 6893, 'varieti': 9431, 'fate': 3377, 'house': 4548, 'charact develop': 1877, 'not help': 6418, 'help feel': 4377, 'develop charact': 2604, 'michael': 5768, 'york': 9979, 'goe': 4091, 'russia': 7736, 'reveng': 7574, 'gangster': 3899, 'policeman': 7064, 'son': 8375, 'cop': 2268, 'bring': 1602, 'justice': 5045, 'alway': 295, 'guy': 4187, 'government': 4114, 'class': 2027, 'alexand': 216, 'blah': 976, 'chemistri': 1945, 'handsom': 4226, 'longer': 5394, 'villain': 9505, 'blond': 998, 'rent': 7505, 'move': 5951, 'br action': 1088, 'action flick': 88, 'interest see': 4766, 'see time': 7972, 'actor have': 107, 'get kill': 3978, 'movie now': 6155, 'br rent': 1481, 'action scene': 91, 'act be': 53, 'be plot': 766, 'br br action': 1122, 'br br rent': 1269, 'load': 5376, 'commerci': 2150, 'ad': 128, 'makeup': 5577, 'imagin': 4631, 'dentist': 2555, 'gotten': 4112, 'lousi': 5448, 'chance': 1857, 'instead': 4732, 'pilot': 6949, 'lack': 5173, 'put': 7268, 'option': 6646, 'pray': 7113, 'death': 2491, 'episod': 3085, 'time show': 9118, 'stori line': 8592, 'david': 2464, 'debut': 2499, 'studi': 8653, 'psycholog': 7237, 'psychiatrist': 7235, 'game': 3892, 'ford': 3785, 'practic': 7110, 'driven': 2837, 'somewhat': 8372, 'neither': 6275, 'defin': 2523, 'billi': 949, 'confid': 2210, 'session': 8026, 'pay': 6802, 'dive': 2719, 'con': 2191, 'larg': 5193, 'claim': 2018, 'mike': 5786, 'agre': 187, 'wipe': 9816, 'clean': 2033, 'simpl': 8169, 'favor': 3384, 'card': 1744, 'middl': 5774, 'margaret': 5630, 'audience': 529, 'dialogue': 2613, 'precis': 7118, 'compelling': 2167, 'realm': 7408, 'existence': 3248, 'introduc': 4785, 'memor': 5733, 'lesson': 5259, 'stun': 8661, 'climax': 2049, 'keep': 5063, 'nature': 6257, 'rivet': 7631, 'lend': 5250, 'possibl': 7092, 'outstand': 6691, 'turmoil': 9326, 'beneath': 908, 'exterior': 3284, 'deepli': 2518, 'capabl': 1731, 'joey': 4906, 'walsh': 9553, 'jay': 4859, 'george': 3939, 'maci': 5510, 'moran': 5919, 'direct': 2649, 'future': 3877, 'perfection': 6855, 'miss': 5845, 'charact studi': 1903, 'person life': 6890, 'man time': 5599, 'book be': 1038, 'time not': 9107, 'film keep': 3554, 'charact be': 1872, 'perform here': 6865, 'play film': 6992, 'be one': 757, 'movi not': 6059, 'not want': 6503, 'domino': 2772, 'question': 7282, 'thriller': 9048, 'convolut': 2263, 'halfway': 4211, 'throw': 9052, 'arm': 433, 'scream': 7890, 'gene': 3922, 'stanley': 8493, 'mess': 5748, 'ever be': 3175, 'onli be': 6617, 'happen': 4231, 'wash': 9591, 'comeback': 2124, 'reunion': 7569, 'tour': 9227, 'strang': 8627, 'fruit': 3849, 'toni': 9180, 'rea': 7363, 'machin': 5508, 'promot': 7210, 'festival': 3428, 'festiv': 3427, 'wave': 9645, 'search': 7922, 'replac': 7514, 'keith': 5075, 'timothi': 9142, 'rocker': 7658, 'mansion': 5623, 'sell': 7987, 'fortun': 3801, 'brian': 1589, 'try': 9319, 'abandon': 0, 'manag': 5602, 'label': 5168, 'club': 2067, 'europe': 3116, 'conflict': 2213, 'chanc': 1854, 'tap': 8817, 'ii': 4619, 'becom': 859, 'relationship': 7475, 'struggl': 8646, 'work class': 9865, 'again so': 176, 'scene not': 7846, 'not kind': 6425, 'film start': 3647, 'br still': 1510, 'person film': 6888, 'film work': 3685, 'br br still': 1295, 'disturb': 2717, 'depict': 2562, 'truth': 9317, 'kid': 5089, 'techniqu': 8841, 'la': 5166, 'blair': 978, 'witch': 9822, 'ben': 904, 'succeed': 8688, 'issu': 4813, 'exact': 3222, 'hate': 4267, 'carri': 1771, 'massacr': 5657, 'zero': 9991, 'power': 7107, 'matter': 5678, 'film not': 3590, 'blair witch': 979, 'be lot': 739, 'lot peopl': 5439, 'part just': 6758, 'just believ': 4964, 'not script': 6473, 'venom': 9442, 'bloodi': 1003, 'violent': 9512, 'ricki': 7603, 'fight': 3438, 'kong': 5149, 'history': 4447, 'masterpiece': 5665, 'career': 1753, 'ass': 487, 'chop': 1973, 'ninja': 6332, 'fight sequenc': 3440, 'film history': 3542, 'mani be': 5610, 'go be': 4068, 'collect': 2099, 'bob': 1014, 'blade': 975, 'plan': 6977, 'inevit': 4694, 'turkey': 9325, 'realis': 7373, 'knock': 5129, 'stink': 8569, 'guess': 4169, 'junk': 4955, 'fast': 3373, 'push': 7267, 'have time': 4326, 'however be': 4557, 'be give': 720, 'work time': 9875, 'rest movi': 7548, 'movi reason': 6079, 'favorit': 3385, 'tom': 9170, 'jerri': 4874, 'perfect': 6854, 'halloween': 4214, 'trick': 9296, 'window': 9809, 'blind': 991, 'hang': 4227, 'ghost': 4006, 'program': 7202, 'radio': 7304, 'leap': 5235, 'throat': 9049, 'chill': 1962, 'spine': 8441, 'literally': 5355, 'fear': 3394, 'scare': 7817, 'him': 4431, 'attack': 510, 'mouse': 5949, 'cat': 1806, 'dollar': 2768, 'bodyguard': 1019, 'trouble': 9311, 'please': 7003, 'trap': 9260, 'texa': 8885, 'abov': 13, 'chuck': 1997, 'be horror': 726, 'stori be': 8581, 'him br': 4432, 'him br br': 4433, 'hard': 4244, 'spi': 8433, 'night': 6325, 'adapt': 130, 'length': 5251, 'faith': 3325, 'approach': 417, 'produc': 7183, 'probabl': 7169, 'hollywood': 4470, 'financ': 3699, 'intellig': 4747, 'nolt': 6342, 'differ': 2626, 'lee': 5242, 'always': 302, 'out': 6679, 'industry': 4692, 'air': 197, 'phenomenon': 6911, 'premis': 7125, 'appear': 411, 'knowledg': 5146, 'confus': 2215, 'unfold': 9379, 'lord': 5420, 'film perhap': 3607, 'length film': 5252, 'film film': 3525, 'film adapt': 3451, 'film produc': 3618, 'ever get': 3181, 'too not': 9202, 'not case': 6380, 'be get': 719, 'time even': 9089, 'tv show': 9343, 'anyway film': 399, 'film enjoy': 3509, 'read book': 7368, 'movie fact': 6139, 'freeman': 3830, 'vega': 9435, 'whilst': 9780, 'research': 7528, 'independ': 4679, 'posit': 7088, 'complex': 2181, 'mood': 5910, 'smile': 8246, 'need': 6265, 'cliché': 2039, 'clutch': 2072, 'laughter': 5212, 'independ film': 4680, 'film bit': 3475, 'bit film': 961, 'film minut': 3578, 'as soon': 467, 'not ani': 6366, 'scene way': 7854, 'forward': 3805, 'jan': 4848, 'vincent': 9507, 'nut': 6553, 'affair': 156, 'like': 5320, 'fantasi': 3348, 'speed': 8424, 'over': 6693, 'compound': 2186, 'thrust': 9055, 'principl': 7163, 'period': 6876, 'thunder': 9058, 'love affair': 5451, 'sever year': 8038, 'year ago': 9937, 'veri br': 9449, 'dure time': 2871, 'time period': 9110, 'carrey': 1770, 'bruce': 1623, 'none': 6345, 'review': 7576, 'somehow': 8354, 'liar': 5282, 'note': 6514, 'daili': 2429, 'jim': 4891, 'piano': 6928, 'let start': 5273, 'feel movi': 3409, 'movi attempt': 5969, 'br posit': 1468, 'rest cast': 7546, 'jim carrey': 4892, 'just see': 5018, 'br br posit': 1256, 'exampl': 3226, 'storytelling': 8622, 'manipul': 5619, 'fake': 3326, 'tad': 8787, 'consid': 2226, 'restraint': 7555, 'explos': 3275, 'thus': 9061, 'act stori': 74, 'movie even': 6137, 'not action': 6361, 'action movie': 90, 'movie stori': 6166, 'describ': 2574, 'bland': 983, 'dull': 2857, 'it': 4815, 'highlight': 4424, 'charismat': 1922, 'brett': 1588, 'kelly': 5077, 'statement': 8516, 'sister': 8194, 'brother': 1620, 'gal': 3888, 'opposit': 6643, 'male': 5579, 'mark': 5638, 'rain': 7309, 'forest': 3787, 'kelli': 5076, 'everyon': 3203, 'step': 8529, 'solv': 8350, 'home': 4477, 'word not': 9855, 'not just': 6424, 'it br': 4816, 'br actor': 1089, 'actor be': 100, 'actor director': 103, 'watch movie': 9621, 'br get': 1379, 'get money': 3984, 'money back': 5889, 'home movi': 4480, 'movi be': 5972, 'be friend': 717, 'it br br': 4817, 'br br actor': 1123, 'br br get': 1188, 'direction': 2652, 'mug': 6195, 'aid': 193, 'joke': 4918, 'bat': 647, 'average': 548, 'wast': 9593, 'result': 7557, 'desper': 2586, 'almost': 235, 'cri': 2359, 'racism': 7299, 'aside': 478, 'down': 2791, 'pile': 6948, 'bean': 822, 'imo': 4642, 'lack plot': 5174, 'wast time': 9596, 'br film': 1368, 'film portray': 3615, 'realli think': 7400, 'think movi': 9023, 'tri find': 9282, 'money time': 5898, 'time watch': 9130, 'br br film': 1181, 'simply': 8175, 'superb': 8719, 'absolut': 17, 'donald': 2775, 'realiti': 7376, 'apartheid': 403, 'kevin': 5083, 'kline': 5123, 'later': 5200, 'portrayal': 7085, 'denzel': 2556, 'washington': 9592, 'master': 5661, 'patienc': 6787, 'remember': 7495, 'so much': 8305, 'year later': 9948, 'performance br': 6869, 'br watch': 1542, 'tell story': 8860, 'performance br br': 6870, 'br br watch': 1321, 'wow': 9905, 'smith': 8248, 'emotion': 2979, 'crash': 2332, 'definit': 2524, 'passion': 6779, 'shallow': 8058, 'abund': 21, 'therefor': 8967, 'mind': 5797, 'pain': 6717, 'happi': 4238, 'just watch': 5040, 'as far': 461, 'show way': 8142, 'time give': 9095, 'movi one': 6062, 'one not': 6615, 'just not': 5006, 'end be': 2994, 'be peopl': 761, 'love life': 5460, 'post': 7094, 'indic': 4685, 'dubbing': 2850, 'rene': 7503, 'clair': 2021, 'reput': 7522, 'maker': 5575, 'louis': 5447, 'brook': 1616, 'switch': 8769, 'mode': 5867, 'dialog': 2611, 'slap': 8214, 'movement': 5955, 'match': 5671, 'explain': 3268, 'prefer': 7121, 'win': 9805, 'contest': 2242, 'fiancé': 3432, 'handl': 4225, 'spell': 8425, 'huh': 4569, 'lloyd': 5374, 'resolut': 7534, 'treatment': 9272, 'du': 2848, 'silent': 8161, 'rating': 7351, 'version film': 9473, 'film version': 3675, 'be mind': 745, 'mind br': 5798, 'film maker': 3570, 'way film': 9656, 'lot film': 5433, 'film even': 3513, 'come close': 2122, 'do film': 2736, 'film just': 3553, 'just have': 4987, 'just film': 4978, 'film have': 3538, 'camera work': 1710, 'acting br': 81, 'br problem': 1471, 'also film': 265, 'back life': 585, 'also bit': 259, 'bit br': 959, 'much movi': 6190, 'everyon else': 3204, 'just movi': 5003, 'far film': 3357, 'film era': 3511, 'just understand': 5034, 'mind br br': 5799, 'acting br br': 82, 'br br problem': 1259, 'bit br br': 960, 'wonder': 9838, 'joe': 4903, 'gang': 3898, 'justifi': 5046, 'present': 7133, 'heath': 4357, 'bloom': 1004, 'battl': 653, 'aspect': 482, 'disappoint': 2678, 'cover': 2319, 'regardless': 7464, 'assum': 498, 'jagger': 4839, 'wonder film': 9839, 'film life': 3560, 'play role': 6997, 'be br': 681, 'br aspect': 1106, 'aspect film': 483, 'life not': 5305, 'not enough': 6393, 'enough br': 3056, 'move film': 5953, 'film sort': 3644, 'be watch': 812, 'br br cast': 1150, 'not be br': 6371, 'be br br': 682, 'br br aspect': 1136, 'enough br br': 3057, 'shelley': 8081, 'duval': 2878, 'theatre': 8904, 'relief': 7484, 'eve': 3119, 'jennif': 4871, 'cinderella': 2002, 'especi': 3100, 'garden': 3906, 'princ': 7159, 'fairi': 3324, 'lady': 5178, 'character': 1909, 'martin': 5649, 'royal': 7717, 'conductor': 2207, 'flow': 3759, 'happili': 4239, 'continu': 2245, 'parent': 6742, 'tire': 9146, 'well not': 9727, 'show br': 8121, 'happili ever': 4240, 'get tire': 3998, 'time day': 9083, 'day be': 2470, 'be littl': 737, 'show br br': 8122, 'shootout': 8104, 'bush': 1671, 'trail': 9245, 'oh': 6585, 'rental': 7511, 'buddi': 1635, 'natur': 6255, 'filming': 3689, 'door': 2781, 'cabin': 1691, 'scene begin': 7826, 'oh well': 6586, 'make want': 5570, 'have make': 4303, 'so so': 8320, 'so act': 8263, 'prais': 7111, 'twin': 9350, 'peak': 6810, 'titl': 9149, 'season': 7923, 'investigation': 4793, 'stone': 8575, 'identifi': 4611, 'murder': 6201, 'supernatur': 8725, 'abil': 4, 'example': 3227, 'serv': 8022, 'agent': 181, 'cooper': 2267, 'cup': 2402, 'milk': 5792, 'floor': 3756, 'gun': 4180, 'belli': 899, 'already': 255, 'bore': 1053, 'min': 5796, 'hell': 4370, 'so peopl': 8311, 'ever life': 3185, 'life br': 5294, 'br now': 1449, 'guess just': 4171, 'br too': 1530, 'too scene': 9206, 'scene show': 7849, 'scene man': 7843, 'man br': 5586, 'br scene': 1487, 'hell br': 4371, 'rather see': 7349, 'see show': 7969, 'life br br': 5295, 'br br now': 1239, 'br br too': 1310, 'man br br': 5587, 'br br scene': 1275, 'content': 2241, 'mobster': 5865, 'improv': 4657, 'airplan': 200, 'triangl': 9293, 'sink': 8190, 'bare': 625, 'horizon': 4512, 'georg': 3938, 'movies': 6175, 'anoth': 361, 'airport': 201, 'either': 2943, 'phoenix': 6917, 'kind movi': 5112, 'br star': 1508, 'movies br': 6176, 'br br star': 1293, 'movies br br': 6177, 'foot': 3777, 'nyc': 6554, 'cusack': 2412, 'accent': 28, 'credit roll': 2353, 'bore movie': 1055, 'militari': 5791, 'train': 9247, 'genr': 3931, 'promin': 7207, 'offic': 6578, 'gentleman': 3936, 'jane': 4849, 'honor': 4496, 'angle': 338, 'inspir': 4725, 'carl': 1761, 'courag': 2308, 'shine': 8091, 'vision': 9518, 'sunday': 8712, 'figure': 3444, 'instance': 4730, 'scar': 7816, 'palm': 6726, 'mr': 6180, 'judg': 4940, 'pace': 6707, 'human': 4572, 'characters': 1916, 'cuba': 2392, 'before': 867, 'rise': 7624, 'occasion': 6566, 'suicid': 8702, 'comedian': 2130, 'analyz': 322, 'adventur': 150, 'rocki': 7660, 'meet': 5723, 'deniro': 2550, 'soul': 8399, 'late': 5197, 'legend': 5246, 'yard': 9932, 'actually': 127, 'gere': 3942, 'cameo': 1707, 'delet': 2533, 'hackney': 4202, 'presentation': 7134, 'sucker': 8693, 'fond': 3772, 'area': 425, 'happen be': 4232, 'charact charact': 1875, 'know much': 5142, 'follow up': 3770, 'up point': 9394, 'characters br': 1917, 'charact depth': 1876, 'so almost': 8265, 'take part': 8801, 'time do': 9085, 'watch br': 9605, 'film watch': 3680, 'everi film': 3197, 'br dvd': 1353, 'theme film': 8911, 'act perform': 68, 'characters br br': 1918, 'watch br br': 9606, 'br br dvd': 1168, 'celebr': 1826, 'hitler': 4454, 'visit': 9519, 'rome': 7691, 'backdrop': 593, 'marri': 5643, 'gabriel': 3883, 'mastroianni': 5669, 'housewif': 4551, 'homosexu': 4487, 'fire': 3715, 'pursu': 7265, 'alon': 249, 'attend': 516, 'histor': 4444, 'spite': 8446, 'author': 542, 'count': 2292, 'king': 5117, 'victor': 9485, 'iii': 4620, 'voic': 9522, 'splendid': 8449, 'cours': 2309, 'sensibl': 7996, 'elabor': 2947, 'atmospher': 505, 'sensit': 7997, 'globe': 4055, 'best': 923, 'stretch': 8638, 'limit': 5330, 'scenario': 7822, 'place': 6965, 'stage': 8477, 'le': 5226, 'dance': 2445, 'illustr': 4625, 'thoma': 9037, 'revolutionari': 7589, 'pari': 6743, 'the': 8901, 'family': 3335, 'roman': 7685, 'flat': 3736, 'strike': 8639, 'marvel': 5651, 'apart': 402, 'roof': 7697, 'love stori': 5470, 'veri enjoy': 9452, 'movi well': 6122, 'music score': 6221, 'best br': 924, 'br director': 1349, 'film take': 3657, 'take place': 8802, 'best br br': 925, 'br br director': 1164, 'film take place': 3658, 'spoiler': 8453, 'concept': 2196, 'destini': 2592, 'answer': 362, 'ask': 479, 'chao': 1864, 'china': 1965, 'chain': 1844, 'reaction': 7366, 'motion': 5941, 'philosoph': 6915, 'tune': 9322, 'answer question': 363, 'ask question': 480, 'have effect': 4282, 'comedi drama': 2127, 'half movi': 4210, 'watch end': 9609, 'damn': 2435, 'hope': 4504, 'goldberg': 4094, 'actress': 123, 'movie one': 6156, 'character br': 1910, 'character br br': 1911, 'br movi have': 1431, 'hilari': 4427, 'sinatra': 8178, 'puppet': 7254, 'creepy': 2357, 'rob': 7637, 'grant': 4131, 'dwarf': 2886, 'earlier': 2896, 'demand': 2543, 'warrant': 9587, 'bay': 658, 'watch over': 9626, 'over again': 6694, 'just charact': 4969, 'also well': 289, 'show also': 8119, 'also veri': 287, 'veri much': 9462, 'lucki': 5488, 'turner': 9334, 'tonight': 9181, 'oscar': 6668, 'month': 5908, 'sequel': 8004, 'mari': 5632, 'winner': 9814, 'mixtur': 5859, 'animation': 351, 'london': 5386, 'summer': 8710, 'guard': 4168, 'boom': 1047, 'iron': 4802, 'dad': 2424, 'army': 437, 'war': 9572, 'disney': 2699, 'fashion': 3372, 'road': 7635, 'soldier': 8346, 'india': 4683, 'metal': 5755, 'drum': 2845, 'femal': 3421, 'costume': 2290, 'surprisingly': 8748, 'price': 7153, 'brief': 1595, 'balloon': 614, 'pictur': 6931, 'bird': 955, 'harvey': 4265, 'repris': 7521, 'sing': 8185, 'denni': 2553, 'occas': 6565, 'lifetim': 5313, 'failure': 3321, 'predecessor': 7119, 'blackmail': 974, 'cut': 2415, 'witchcraft': 9823, 'raid': 7306, 'countryside': 2301, 'sea': 7919, 'soccer': 8342, 'latter': 5205, 'bang': 617, 'sampl': 7767, 'oscar year': 6670, 'film success': 3653, 'film too': 3668, 'role br': 7669, 'not too': 6496, 'too film': 9192, 'film seri': 3634, 'music number': 6219, 'music film': 6215, 'not play': 6458, 'br rest': 1482, 'sequenc film': 8008, 'film role': 3627, 'have part': 4311, 'film onli': 3601, 'role br br': 7670, 'br br rest': 1270, 'glover': 4060, 'appreci': 415, 'poetry': 7043, 'slide': 8232, 'drug': 2842, 'make film': 5542, 'never film': 6296, 'film ever': 3514, 'ever again': 3174, 'guy just': 4193, 'just so': 5022, 'film again': 3452, 'have be': 4275, 'describe': 2576, 'grey': 4147, 'bizarre': 972, 'bathroom': 650, 'reader': 7371, 'institut': 4739, 'bump': 1654, 'top': 9216, 'edi': 2918, 'thumb': 9057, 'nose': 6357, 'society': 8344, 'just realli': 5012, 'realli look': 7391, 'movi peopl': 6065, 'peopl have': 6830, 'have ever': 4286, 'ever watch': 3194, 'almost be': 237, 'be just': 731, 'joseph': 4928, 'moving': 6178, 'sherlock': 8086, 'holm': 4474, 'accur': 38, 'digit': 2636, 'piec': 6935, 'excel': 3229, 'round': 7710, 'tim': 9069, 'cox': 2323, 'look forward': 5403, 'sherlock holm': 8087, 'interest charact': 4757, 'name not': 6246, 'not rememb': 6470, 'end charact': 2998, 'gender': 3921, 'toler': 9169, 'disgust': 2694, 'cause': 1819, 'subsequ': 8676, 'investig': 4792, 'head': 4341, 'heston': 4418, 'futur': 3876, 'soylent': 8408, 'corpor': 2280, 'terribl': 8875, 'secur': 7933, 'mistress': 5851, 'along': 251, 'apartment': 404, 'mass': 5656, 'car': 1741, 'indeed': 4678, 'discuss': 2690, 'edward': 2925, 'robinson': 7649, 'sidekick': 8152, 'easili': 2901, 'profound': 7201, 'mani peopl': 5613, 'peopl film': 6828, 'film almost': 3454, 'love just': 5459, 'film begin': 3473, 'br man': 1416, 'not live': 6430, 'film however': 3544, 'film plot': 3613, 'plot act': 7011, 'br br man': 1219, 'emphas': 2983, 'violenc': 9510, 'convinc': 2261, 'ride': 7606, 'not convinc': 6385, 'never be': 6289, 'verhoeven': 9446, 'garbage': 3902, 'hack': 4200, 'chapter': 1867, 'trash': 9261, 'aliv': 225, 'mock': 5866, 'portion': 7080, 'director be': 2657, 'decid make': 2507, 'make thing': 5565, 'have never': 4308, 'get br': 3951, 'br anim': 1097, 'get br br': 3952, 'br br anim': 1129, 'pit': 6958, 'park': 6745, 'belov': 901, 'moon': 5913, 'wallac': 9552, 'cheese': 1941, 'featur': 3397, 'reminisc': 7497, 'box': 1075, 'tradit': 9239, 'generation': 3927, 'pleasur': 7004, 'activ': 95, 'seek': 7978, 'adaptation': 133, 'successor': 8691, 'possess': 7091, 'work just': 9869, 'br as': 1103, 'well be': 9709, 'bit too': 965, 'thing come': 8984, 'br br as': 1134, 'as well be': 469, 'melodramat': 5728, 'plain': 6976, 'town': 9230, 'interesting': 4772, 'bach': 573, 'candy': 1724, 'gem': 3920, 'worth': 9899, 'so fun': 8284, 'just plain': 5008, 'make fun': 5543, 'film center': 3484, 'time way': 9131, 'kind way': 5115, 'br perform': 1463, 'perform so': 6867, 'film movi': 3581, 'movi kind': 6038, 'br just': 1400, 'scene look': 7841, 'there br br': 8957, 'br br perform': 1251, 'imag': 4627, 'cool': 2265, 'hip': 4440, 'arrang': 441, 'lie': 5287, 'daddy': 2426, 'claim be': 2019, 'eleg': 2952, 'folk': 3768, 'sit': 8195, 'noir': 6339, 'genre': 3932, 'past': 6780, 'city': 2016, 'sophist': 8388, 'phrase': 6925, 'sidewalk': 8153, 'copi': 2270, 'stock': 8572, 'manhattan': 5608, 'cabl': 1692, 'channel': 1863, 'belong': 900, 'categori': 1810, 'cloud': 2065, 'curtain': 2409, 'marc': 5627, 'dixon': 2726, 'sure': 8738, 'troubl': 9310, 'uncomfort': 9370, 'smack': 8242, 'suspect': 8754, 'outing': 6684, 'stop': 8577, 'boss': 1061, 'complaint': 2173, 'hook': 4499, 'advic': 153, 'generat': 3926, 'partner': 6771, 'threaten': 9045, 'bogart': 1020, 'escap': 3098, 'nowher': 6543, 'tierney': 9066, 'gloss': 4058, 'date': 2460, 'parodi': 6748, 'fodder': 3765, 'consider': 2228, 'range': 7325, 'heaven': 4358, 'grow': 4163, 'closer': 2061, 'self': 7986, 'destruction': 2595, 'rope': 7702, 'summar': 8708, 'compel': 2166, 'wrong': 9922, 'shift': 8090, 'wind': 9808, 'punch': 7250, 'surface': 8741, 'doe': 2758, 'pick': 6929, 'sterl': 8533, 'glare': 4049, 'dub': 2849, 'model': 5868, 'mysteri': 6234, 'scienc': 7871, 'odd': 6570, 'heck': 4362, 'not alway': 6365, 'do thing': 2748, 'film noir': 3589, 'br yet': 1558, 'yet film': 9971, 'film genre': 3530, 'find film': 3705, 'video store': 9491, 'br moment': 1428, 'br sure': 1515, 'time br': 9079, 'boy br': 1080, 'matter br': 5679, 'br world': 1552, 'right away': 7612, 'gene tierney': 3924, 'home br': 4478, 'br pace': 1458, 'effect be': 2928, 'be actress': 663, 'here as': 4392, 'br end': 1355, 'peopl get': 6829, 'get too': 3999, 'head br': 4342, 'br make': 1415, 'thing go': 8990, 'so do': 8275, 'do right': 2745, 'mysteri scienc': 6235, 'scienc theater': 7873, 'br fan': 1366, 'movi fan': 6012, 'time br br': 9080, 'br br yet': 1331, 'boy br br': 1081, 'br br end': 1170, 'head br br': 4343, 'br br make': 1218, 'wit': 9821, 'ahead': 190, 'street': 8634, 'jimmi': 4893, 'cagney': 1697, 'releas': 7478, 'code': 2083, 'motion pictur': 5942, 'refer': 7459, 'bother': 1064, 'connect': 2217, 'spot': 8461, 'avoid': 549, 'abl': 6, 'overlook': 6700, 'idiot': 4614, 'be ever': 708, 'ever make': 3186, 'friend watch': 3839, 'whi just': 9772, 'scene film': 7833, 'film show': 3639, 'almost as': 236, 'well have': 9719, 'have not': 4309, 'not br': 6376, 'br avoid': 1108, 'avoid movi': 551, 'not br br': 6377, 'br br avoid': 1137, 'specif': 8420, 'sick': 8149, 'couch': 2291, 'grade': 4119, 'husband': 4589, 'kick': 5088, 'easi': 2900, 'time back': 9076, 'actor br': 101, 'show lot': 8131, 'look act': 5395, 'let tell': 5274, 'not as': 6368, 'look br': 5398, 'actor br br': 102, 'look br br': 5399, 'fabric': 3298, 'news': 6317, 'basi': 641, 'dedic': 2514, 'admittedly': 143, 'century': 1838, 'whole': 9786, 'footag': 3778, 'documentari': 2754, 'fiction': 3433, 'clip': 2053, 'situat': 8201, 'storylin': 8619, 'film attempt': 3463, 'aspect movie': 485, 'film stori': 3649, 'act well': 79, 'feel movie': 3410, 'movi work': 6123, 'etc': 3110, 'mediocr': 5720, 'fare': 3364, 'one have': 6613, 'rent buy': 7506, 'cruella': 2384, 'prison': 7166, 'homeless': 4482, 'clock': 2055, 'cure': 2404, 'coat': 2079, 'repeat': 7512, 'br believ': 1115, 'believ be': 890, 'back time': 591, 'time make': 9101, 'onc again': 6601, 'highlight film': 4425, 'film rather': 3622, 'story br': 8611, 'story br br': 8612, 'phantasm': 6908, 'witty': 9826, 'entertaining': 3072, 'creator': 2347, 'originality': 6665, 'comparison': 2163, 'beginning': 878, 'sentinel': 8001, 'brain': 1563, 'alone': 250, 'crew': 2358, 'creepi': 2356, 'loos': 5418, 'baldwin': 611, 'jame': 4842, 'opinion': 6636, 'difference': 2631, 'disappointment': 2680, 'quickly': 7285, 'expect': 3252, 'horror flick': 4525, 'not complet': 6384, 'br spoiler': 1506, 'spoiler br': 8456, 'br quit': 1474, 'littl kid': 5365, 'kid be': 5090, 'film also': 3455, 'keep film': 5067, 'interest enough': 4758, 'attempt make': 515, 'br thing': 1523, 'film give': 3533, 'give try': 4044, 'br spoiler br': 1507, 'spoiler br br': 8457, 'br br quit': 1262, 'br br thing': 1306, 'foremost': 3786, 'brando': 1567, 'ironi': 4803, 'surprise': 8747, 'salvat': 7762, 'simmon': 8167, 'restaur': 7551, 'frank': 3820, 'broadway': 1609, 'slow': 8237, 'proceed': 7180, 'term': 8872, 'advanc': 148, 'horn': 4513, 'nightclub': 6328, 'danc': 2442, 'remind': 7496, 'cash': 1780, 'whatev': 9757, 'squar': 8470, 'phoni': 6920, 'attent': 517, 'sequence': 8009, 'photography': 6924, 'stuff': 8657, 'doll': 2767, 'felt': 3420, 'regard': 7463, 'bet': 926, 'wedding': 9695, 'marion': 5637, 'change': 1862, 'someone': 8360, 'convey': 2258, 'cross': 2378, 'not quit': 6462, 'be scene': 779, 'expect much': 3258, 'stori life': 8591, 'scene also': 7823, 'then back': 8916, 'danc number': 2443, 'screen time': 7897, 'time time': 9124, 'level br': 5277, 'br veri': 1537, 'veri first': 9455, 'help be': 4376, 'be remind': 774, 'art direct': 448, 'direct film': 2650, 'film time': 3665, 'be shot': 786, 'realli do': 7384, 'have scene': 4319, 'scene scene': 7847, 'moment film': 5878, 'film still': 3648, 'level br br': 5278, 'br br veri': 1317, 'spike': 8437, 'franklin': 3823, 'host': 4533, 'industri': 4691, 'in': 4659, 'colour': 2108, 'substitut': 8679, 'humour': 4581, 'toilet': 9166, 'oper': 6633, 'babi': 571, 'tattoo': 8827, 'shadow': 8051, 'shave': 8071, 'foster': 3807, 'planet': 6980, 'earth': 2899, 'jone': 4926, 'bunni': 1658, 'clue': 2068, 'prior': 7165, 'award': 557, 'dread': 2820, 'guilt': 4175, 'spike lee': 8438, 'film industri': 3547, 'time year': 9135, 'televis show': 8852, 'peopl not': 6836, 'possibl be': 7093, 'planet earth': 6981, 'far too': 3361, 'too be': 9183, 'be even': 707, 'even funni': 3135, 'clever': 2037, 'development': 2605, 'business': 1673, 'harsh': 4259, 'insult': 4743, 'critic': 2370, 'desir': 2583, 'bash': 640, 'slash': 8217, 'satisfi': 7788, 'thril': 9046, 'premise': 7128, 'stick': 8538, 'messag': 5751, 'assault': 489, 'draw': 2818, 'suffer': 8697, 'spirit': 8443, 'curtis': 2411, 'thing do': 8985, 'critic film': 2371, 'film wonder': 3684, 'just becaus': 4962, 'becaus get': 843, 'bachelor': 575, 'party': 6772, 'type': 9357, 'laughs': 5211, 'pie': 6934, 'defeat': 2521, 'hole': 4464, 'purpos': 7263, 'nudity': 6548, 'silli': 8162, 'ron': 7695, 'weekend': 9699, 'miami': 5766, 'parti': 6768, 'todd': 9160, 'marriage': 5645, 'seth': 8031, 'likabl': 5319, 'tear': 8837, 'pleasur watch': 7006, 'so see': 8318, 'plot not': 7027, 'have littl': 4299, 'origin movie': 6661, 'movie becaus': 6131, 'becaus have': 844, 'take job': 8796, 'chang mind': 1860, 'here there': 4407, 'just get': 4981, 'get watch': 4001, 'watch film': 9613, 'movi get': 6021, 'dr': 2805, 'mccoy': 5699, 'spock': 8451, 'ice': 4596, 'kirk': 5120, 'coloni': 2106, 'pair': 6721, 'besid': 921, 'freez': 3831, 'hartley': 4261, 'pattern': 6794, 'attract': 523, 'caution': 1820, 'grasp': 4133, 'reality': 7378, 'stand': 8489, 'hilt': 4429, 'installment': 4728, 'shatner': 8069, 'allow': 232, 'wolf': 9830, 'trio': 9301, 'ice age': 4597, 'time charact': 9081, 'charact get': 1883, 'get girl': 3965, 'girl br': 4023, 'category': 1811, 'caus': 1818, 'pump': 7248, 'vein': 9439, 'risk': 7625, 'terrifi': 8877, 'madman': 5517, 'course': 2310, 'teenag': 8846, 'slasher': 8218, 'fill': 3446, 'splatter': 8448, 'father': 3378, 'argu': 426, 'carpent': 1766, 'scary': 7821, 'sadist': 7747, 'skill': 8206, 'mistake': 5849, 'swallow': 8761, 'ridicul': 7608, 'creativ': 2346, 'save': 7791, 'order': 6651, 'everyth': 3208, 'twice': 9347, 'primit': 7158, 'except': 3233, 'shape': 8064, 'co': 2073, 'brilliance': 1600, 'lure': 5498, 'freedom': 3829, 'advantag': 149, 'recogn': 7429, 'luckily': 5490, 'intimaci': 4782, 'purpose': 7264, 'gear': 3917, 'slight': 8233, 'everi now': 3198, 'now then': 6540, 'then movi': 8930, 'horror movi': 4526, 'br then': 1521, 'never br': 6292, 'come br': 2120, 'br sound': 1503, 'br jame': 1398, 'br point': 1467, 'well almost': 9707, 'bodi count': 1017, 'horror movie': 4528, 'movie not': 6154, 'be movie': 749, 'charact do': 1879, 'charact make': 1889, 'br reason': 1478, 'reason so': 7417, 'so believ': 8269, 'set piec': 8029, 'br horror': 1392, 'movi film': 6015, 'film make': 3569, 'someth be': 8362, 'everyth be': 3209, 'be idea': 728, 'not seem': 6475, 'again br': 169, 'act here': 63, 'here not': 4404, 'not point': 6460, 'need be': 6266, 'be movi': 747, 'not movi': 6443, 'actor act': 97, 'not charact': 6381, 'charact story': 1902, 'be have': 723, 'movi thing': 6103, 'thing not': 9002, 'as film': 462, 'not scene': 6472, 'not not': 6450, 'know not': 5143, 'not so': 6479, 'so film': 8282, 'film get': 3531, 'end br': 2996, 'film see': 3633, 'see anyon': 7940, 'everi now then': 3199, 'never br br': 6293, 'come br br': 2121, 'br br sound': 1289, 'br br point': 1255, 'br br reason': 1266, 'br br horror': 1199, 'again br br': 170, 'end br br': 2997, 'picture': 6932, 'desert': 2579, 'mickey': 5772, 'protect': 7225, 'meanwhile': 5715, 'ten': 8866, 'philip': 6913, 'baker': 607, 'hall': 4212, 'be attempt': 672, 'question be': 7283, 'be part': 760, 'just movie': 5004, 'disc': 2684, 'basis': 644, 'depend': 2561, 'forgiv': 3792, 'alan': 207, 'arkin': 432, 'obviously': 6564, 'gratuit': 4136, 'adult': 147, 'language': 5191, 'particular': 6770, 'swear': 8762, 'correctly': 2284, 'movi dvd': 5999, 'doe not': 2762, 'have even': 4285, 'not care': 6379, 'care br': 1748, 'product film': 7189, 'look life': 5407, 'humor br': 4577, 'sometim be': 8370, 'br also': 1094, 'doe not have': 2763, 'care br br': 1749, 'humor br br': 4578, 'high': 4423, 'love movi': 5462, 'wonder movi': 9842, 'fail': 3319, 'transfer': 9253, 'courtroom': 2317, 'lincoln': 5333, 'fonda': 3773, 'trial': 9292, 'walk': 9547, 'statu': 8518, 'spark': 8414, 'get film': 3963, 'too br': 9185, 'get point': 3988, 'br story': 1512, 'interest film': 4759, 'too br br': 9186, 'br br story': 1297, 'melodrama': 5727, 'bergman': 916, 'presenc': 7131, 'meander': 5709, 'imposs': 4652, 'asleep': 481, 'film star': 3646, 'fast forward': 3374, 'lot br': 5431, 'fall asleep': 3330, 'lot br br': 5432, 'crush': 2387, 'motif': 5940, 'thief': 8975, 'metaphor': 5756, 'juvenil': 5048, 'accus': 41, 'confin': 2211, 'sorry': 8393, 'sort thing': 8397, 'now film': 6530, 'have watch': 4330, 'br have': 1389, 'have interest': 4295, 'there too': 8964, 'too time': 9210, 'centuri': 1837, 'fox': 3810, 'ingredi': 4703, 'determin': 2600, 'essenc': 3105, 'stress': 8637, 'circumst': 2012, 'exagger': 3224, 'awhile': 567, 'relat': 7474, 'appeal': 410, 'roach': 7634, 'exclus': 3239, 'finish': 3713, 'be far': 712, 'far be': 3353, 'be work': 816, 'work as': 9860, 'humor film': 4579, 'realli be': 7382, 'be today': 803, 'point be': 7046, 'film art': 3460, 'way not': 9668, 'go make': 4077, 'cathol': 1814, 'church': 1999, 'sin': 8177, 'individu': 4687, 'often': 6582, 'therebi': 8966, 'deni': 2549, 'entranc': 3080, 'redemption': 7451, 'wander': 9558, 'anti': 368, 'spiritu': 8444, 'alex': 215, 'ledger': 5241, 'priest': 7155, 'knowledge': 5147, 'mentor': 5740, 'send': 7991, 'underworld': 9378, 'princip': 7162, 'burst': 1665, 'despair': 2585, 'notabl': 6512, 'rule': 7724, 'attraction': 524, 'forth': 3799, 'arc': 422, 'gap': 3900, 'structur': 8644, 'truli': 9313, 'antagonist': 365, 'forc': 3783, 'combin': 2115, 'subtl': 8682, 'orchestr': 6649, 'decept': 2504, 'remain': 7488, 'engag': 3038, 'function': 3866, 'sheer': 8077, 'prevent': 7150, 'cathol church': 1815, 'be thing': 800, 'be perform': 762, 'perform film': 6864, 'br plot': 1466, 'back forth': 583, 'scene be': 7825, 'be also': 666, 'fact never': 3312, 'end film': 3004, 'time film': 9091, 'even begin': 3123, 'film charact': 3485, 'someth br': 8363, 'br mention': 1421, 'be veri': 808, 'peopl be': 6824, 'be turn': 805, 'turn movi': 9332, 'movi even': 6003, 'still film': 8547, 'dvd be': 2880, 'recommend film': 7438, 'peopl think': 6843, 'br br plot': 1254, 'br br mention': 1223, 'memory': 5735, 'realist': 7375, 'buff': 1643, 'enjoy movi': 3049, 'br fun': 1377, 'fun watch': 3865, 'br br fun': 1186, 'jami': 4846, 'kennedi': 5079, 'prove': 7229, 'darker': 2456, 'ever movi': 3187, 'ever so': 3192, 'interest look': 4760, 'watch movi': 9620, 'movi ever movi': 6006, 'kidman': 5096, 'vehicle': 9438, 'element': 2953, 'chaplin': 1866, 'romant': 7689, 'implaus': 4646, 'baby': 572, 'weird': 9701, 'killer': 5105, 'romant comedi': 7690, 'movi enjoy': 6001, 'be killer': 732, 'home video': 4481, 'reign': 7470, 'sandler': 7772, 'don': 2773, 'tyler': 9356, 'sutherland': 8760, 'robert': 7644, 'dillon': 2640, 'allen': 228, 'affect': 157, 'unit': 9387, 'colleg': 2102, 'roommat': 7699, 'wealth': 9684, 'alli': 230, 'genuin': 3937, 'solut': 8349, 'donald sutherland': 2776, 'do work': 2750, 'purpl': 7259, 'cigarett': 2001, 'conversation': 2256, 'beforehand': 870, 'particip': 6769, 'ani film': 346, 'like movie': 5325, 'becaus film': 842, 'peopl just': 6832, 'just stand': 5023, 'still time': 8562, 'understand br': 9375, 'star film': 8500, 'film look': 3565, 'forward see': 3806, 'time have': 9096, 'have sex': 4321, 'sex scene': 8042, 'look forward see': 5404, 'angel': 333, 'mum': 6198, 'br sort': 1502, 'even not': 3147, 'annoy': 359, 'unfunni': 9383, 'romano': 7688, 'gag': 3886, 'vet': 9479, 'loop': 5417, 'fbi': 3393, 'destroy': 2593, 'trace': 9233, 'duti': 2877, 'mayhem': 5693, 'ensu': 3064, 'straight': 8623, 'settl': 8033, 'chris': 1981, 'alarm': 208, 'slapstick': 8216, 'snl': 8258, 'reli': 7482, 'routine': 7713, 'torture': 9223, 'mafia': 5521, 'tick': 9062, 'plenti': 7008, 'screenwrit': 7900, 'penn': 6821, 'peter': 6902, 'falk': 3327, 'whi film': 9771, 'so well': 8333, 'then film': 8923, 'say br': 7801, 'tri do': 9280, 'right so': 7617, 'so life': 8297, 'lead actor': 5228, 'minut film': 5820, 'have movi': 4305, 'movi just': 6036, 'time write': 9134, 'watch even': 9612, 'peter falk': 6903, 'say br br': 7802, 'react': 7365, 'accord': 36, 'voice': 9524, 'warhol': 9581, 'descend': 2572, 'exploit': 3272, 'max': 5685, 'value': 9420, 'portrait': 7082, 'genius': 3930, 'ourselv': 6678, 'just wonder': 5042, 'be too': 804, 'scene movi': 7844, 'movi come': 5989, 'not then': 6491, 'way movi': 9665, 'modesti': 5870, 'raymond': 7358, 'cruz': 2388, 'garcia': 3905, 'tarantino': 8820, 'choos': 1972, 'willi': 9802, 'drop': 2840, 'wicker': 9791, 'warn': 9584, 'sarcasm': 7782, 'cage': 1696, 'sceneri': 7856, 'island': 4810, 'library': 5286, 'outlin': 6686, 'just want': 5038, 'wicker man': 9792, 'man movi': 5595, 'movi year': 6125, 'mayb even': 5688, 'not see': 6474, 'see br': 7944, 'br give': 1381, 'here movi': 4403, 'movi plot': 6070, 'hour time': 4546, 'pay see': 6804, 'not go': 6415, 'go see': 4080, 'rent dvd': 7507, 'see br br': 7945, 'br br give': 1190, 'convert': 2257, 'thrill': 9047, 'spill': 8439, 'ex': 3221, 'district': 2716, 'sheep': 8076, 'bunch': 1655, 'br exampl': 1362, 'layer': 5225, 'east': 2905, 'shame': 8059, 'hand film': 4223, 'make feel': 5541, 'script plot': 7913, 'make money': 5553, 'field': 3435, 'vegas': 9436, 'soap': 8338, 'wall': 9551, 'daytim': 2479, 'television': 8853, 'even never': 3146, 'love film': 5456, 'addict': 135, 'privat': 7167, 'millionair': 5795, 'blossom': 1005, 'sh': 8049, 'hi': 4420, 'detract': 2601, 'even bother': 3124, 'watch it': 9616, 'drug addict': 2843, 'support role': 8734, 'midnight': 5781, 'cowboy': 2322, 'daniel': 2451, 'butcher': 1679, 'ratso': 7355, 'hoffman': 4460, 'buck': 1632, 'float': 3753, 'altogether': 294, 'importantly': 4650, 'gritti': 4157, 'message': 5753, 'insight': 4721, 'escape': 3099, 'midnight cowboy': 5782, 'film play': 3612, 'peopl way': 6846, 'far br': 3354, 'find way': 3710, 'way be': 9649, 'life even': 5297, 'even be': 3122, 'else br': 2964, 'find movi': 3707, 'once': 6603, 'teach': 8833, 'accept': 29, 'abus': 22, 'fulli': 3856, 'gosh': 4111, 'go back': 4067, 'person not': 6892, 'find love': 3706, 'br write': 1553, 'believ not': 894, 'br br write': 1328, 'convict': 2259, 'comput': 2189, 'devic': 2606, 'receiv': 7426, 'christoph': 1993, 'christoph lee': 1994, 'not also': 6364, 'divorc': 2724, 'disaster': 2682, 'sympathet': 8775, 'monster': 5904, 'hint': 4439, 'terror': 8880, 'film especi': 3512, 'have br': 4277, 'br charact': 1335, 'probabl not': 7173, 'have br br': 4278, 'br br charact': 1151, 'br film be': 1370, 'dancer': 2446, 'bridg': 1592, 'excit': 3237, 'film alway': 3456, 'music danc': 6214, 'damag': 2432, 'garner': 3910, 'market': 5639, 'weaver': 9690, 'claud': 2029, 'darn': 2458, 'successfully': 8690, 'outlaw': 6685, 'saloon': 7759, 'eastwood': 2906, 'spent': 8431, 'territori': 8878, 'lock': 5379, 'transport': 9259, 'togeth': 9162, 'heist': 4367, 'protagonist': 7224, 'method': 5758, 'break': 1575, 'gold': 4093, 'gut': 4186, 'thirti': 9033, 'chorus': 1978, 'alway get': 297, 'well film': 9717, 'br role': 1485, 'br here': 1390, 'movi goe': 6025, 'just too': 5031, 'not thing': 6493, 'film lot': 3566, 'film mayb': 3575, 'better br': 932, 'br br role': 1273, 'br br here': 1198, 'br br just': 1205, 'ah': 189, 'personally': 6895, 'tremend': 9275, 'dude': 2853, 'walken': 9549, 'cute': 2416, 'pleasure': 7007, 'country': 2297, 'seriously': 8020, 'clichéd': 2040, 'sentiment': 8000, 'pow': 7104, 'symbol': 8772, 'debt': 2498, 'rebel': 7420, 'revolut': 7587, 'presid': 7136, 'columbia': 2109, 'execut': 3243, 'president': 7137, 'travel': 9265, 'assist': 494, 'vietnam': 9493, 'miser': 5837, 'plane': 6978, 'open': 6631, 'okay': 6589, 'fool': 3776, 'compos': 2184, 'add': 134, 'heroic': 4412, 'goal': 4084, 'mission': 5847, 'squad': 8469, 'coher': 2088, 'plausibl': 6987, 'outrag': 6688, 'nation': 6253, 'gunfight': 4182, 'soundtrack': 8403, 'joan': 4895, 'charact name': 1892, 'christoph walken': 1995, 'becaus there': 853, 'motion picture': 5943, 'too seriously': 9207, 'action sequenc': 92, 'charact movie': 1891, 'br okay': 1451, 'let not': 5270, 'quit time': 7293, 'even have': 3138, 'not expect': 6401, 'br br okay': 1241, 'arch': 423, 'march': 5629, 'teacher': 8834, 'experience': 3263, 'link': 5345, 'print': 7164, 'size': 8204, 'restor': 7553, 'cultur': 2399, 'agenc': 179, 'import': 4649, 'gasp': 3912, 'valley': 9417, 'antonioni': 374, 'wake': 9546, 'inde': 4677, 'leonard': 5256, 'romeo': 7692, 'her': 4386, 'everything': 3212, 'daylight': 2478, 'hippi': 4442, 'insid': 4719, 'environment': 3083, 'glimps': 4054, 'photo': 6921, 'restaurant': 7552, 'that': 8897, 'peace': 6809, 'too too': 9211, 'let face': 5263, 'br time': 1527, 'br year': 1556, 'work art': 9859, 'keep thing': 5071, 'place br': 6967, 'feel film': 3407, 'die br': 2623, 'let go': 5265, 'go br': 4069, 'time so': 9119, 'br see': 1492, 'movi show': 6089, 'be screen': 781, 'br so': 1499, 'so still': 8323, 'br br time': 1308, 'br br year': 1330, 'die br br': 2624, 'br br then': 1304, 'br br so': 1286, 'moron': 5930, 'advis': 155, 'acid': 46, 'info': 4699, 'defend': 2522, 'paper': 6733, 'lion': 5346, 'again make': 173, 'make think': 5566, 'be take': 796, 'forti': 3800, 'fault': 3383, 'violence': 9511, 'unlik': 9390, 'clockwork': 2056, 'sum': 8707, 'walker': 9550, 'desire': 2584, 'bedroom': 861, 'mere': 5743, 'leg': 5244, 'challeng': 1848, 'themselv': 8914, 'aim': 195, 'remov': 7499, 'nobl': 6336, 'joy': 4935, 'carol': 1765, 'reed': 7455, 'idol': 4615, 'powel': 7105, 'sidney': 8154, 'lumet': 5494, 'glory': 4057, 'celluloid': 1830, 'film feel': 3522, 'minut so': 5825, 'not actor': 6362, 'writer director': 9919, 'be bit': 678, 'br think': 1526, 'man film': 5589, 'film far': 3520, 'sidney lumet': 8155, 'br br think': 1307, 'bett': 929, 'davi': 2463, 'flop': 3757, 'variat': 9430, 'distinct': 2709, 'phone': 6918, 'misunderstood': 5853, 'bett davi': 930, 'be act': 660, 'behaviour': 883, 'noth': 6515, 'thing realli': 9004, 'not stori': 6486, 'stori so': 8599, 'so charact': 8273, 'charact so': 1900, 'warner': 9585, 'stanwyck': 8494, 'wilder': 9800, 'lili': 5328, 'daughter': 2461, 'owner': 6705, 'steel': 8525, 'sleep': 8227, 'ladder': 5176, 'blaze': 986, 'amor': 316, 'seduct': 7936, 'wayn': 9682, 'third': 9032, 'fund': 3867, 'bond': 1027, 'friendship': 3840, 'immigr': 4640, 'philosophi': 6916, 'film veri': 3673, 'barbara stanwyck': 623, 'year be': 9939, 'work here': 9868, 'john wayn': 4914, 'film job': 3551, 'screen film': 7895, 'woman name': 9836, 'chosen': 1980, 'tech': 8838, 'render': 7501, 'issue': 4814, 'indi': 4681, 'and': 326, 'or': 6647, 'films': 3692, 'ps': 7234, 'sorri': 8391, 'never movi': 6308, 'not fan': 6403, 'film use': 3672, 'use effect': 9402, 'effect film': 2931, 'end credit': 2999, 'also have': 267, 'scene guy': 7836, 'br rate': 1475, 'and or': 327, 'films br': 3693, 'br ps': 1473, 'br br rate': 1263, 'films br br': 3694, 'br br ps': 1261, 'jess': 4878, 'hawk': 4334, 'juli': 4948, 'stranger': 8629, 'explor': 3274, 'vienna': 9492, 'citi': 2014, 'offer': 6577, 'charisma': 1921, 'manag get': 5604, 'breath air': 1583, 'sexi': 8044, 'region': 7465, 'uk': 9363, 'amazon': 308, 'seri so': 8015, 'so differ': 8274, 'time now': 9108, 'drama br': 2814, 'episod season': 3087, 'seem be': 7980, 'br unfortunately': 1535, 'have end': 4283, 'br seri': 1493, 'br br unfortunately': 1315, 'br br seri': 1280, 'busi': 1672, 'harri': 4253, 'godfather': 4089, 'spoof': 8458, 'goon': 4105, 'parody': 6749, 'be budget': 683, 'not realli': 6466, 'charact br': 1873, 'tell not': 8858, 'movie be': 6130, 'also see': 282, 'actor film': 105, 'action br': 85, 'support cast': 8731, 'well cast': 9712, 'movi book': 5979, 'movie then': 6167, 'then end': 8921, 'movi rate': 6075, 'charact br br': 1874, 'wretch': 9912, 'holi': 4465, 'law': 5218, 'degener': 2527, 'sub': 8671, 'purchas': 7256, 'ratio': 7353, 'demon': 2547, 'chiller': 1963, 'exec': 3242, 'cater': 1812, 'travesti': 9266, 'masquerad': 5655, 'sub plot': 8672, 'tv movi': 9338, 'produc movi': 7185, 'give away': 4030, 'death scene': 2494, 'ever screen': 3190, 'disturbing': 2718, 'rapist': 7333, 'tabl': 8783, 'confess': 2209, 'maybe': 5692, 'fawcett': 3391, 'russo': 7738, 'alfr': 217, 'stuf': 8656, 'arriv': 444, 'therefore': 8968, 'polic': 7062, 'faint': 3322, 'grip': 4155, 'anchor': 324, 'way home': 9660, 'be man': 742, 'man just': 5592, 'part not': 6762, 'see play': 7966, 'piec work': 6942, 'film ani': 3457, 'perform be': 6859, 'be woman': 815, 'be much': 750, 'co star': 2074, 'guy not': 4194, 'materi': 5673, 'platoon': 6986, 'theatr': 8903, 'cheap': 1932, 'flower': 3760, 'jail': 4840, 'religion': 7486, 'button': 1682, 'scotland': 7886, 'judgment': 4943, 'clichés': 2041, 'br hand': 1387, 'case point': 1779, 'plot br': 7013, 'life be': 5293, 'just love': 5000, 'br br hand': 1196, 'plot br br': 7014, 'jason': 4856, 'rachel': 7298, 'ward': 9579, 'heat': 4356, 'flashback': 3735, 'mystery': 6236, 'sexy': 8046, 'film run': 3628, 'tell stori': 8859, 'never ever': 6295, 'give performance': 4042, 'love scene': 5466, 'prequel': 7130, 'tax': 8828, 'luca': 5484, 'christensen': 1984, 'pocket': 7039, 'edg': 2914, 'fleet': 3743, 'jar': 4854, 'jedi': 4864, 'star war': 8505, 'even film': 3133, 'br minut': 1427, 'know charact': 5135, 'role here': 7673, 'br br minut': 1226, 'redford': 7452, 'percept': 6853, 'montana': 5907, 'baptist': 620, 'contempl': 2237, 'rhythm': 7597, 'photographi': 6923, 'norman': 6354, 'fisher': 3725, 'boxer': 1078, 'brad': 1559, 'pitt': 6961, 'alcohol': 212, 'appli': 414, 'worm': 9893, 'bait': 606, 'refus': 7462, 'wait': 9541, 'plate': 6984, 'jessi': 4880, 'burn': 1664, 'propos': 7221, 'chicago': 1955, 'narrator': 6250, 'producer': 7186, 'hundr': 4582, 'technolog': 8843, 'memori': 5734, 'never tire': 6313, 'movi too': 6108, 'type movi': 9359, 'act scene': 71, 'brad pitt': 1560, 'back home': 584, 'decid go': 2506, 'not stop': 6485, 'chanc see': 1856, 'life death': 5296, 'curs': 2407, 'toronto': 9221, 'distribution': 2714, 'shaun': 8070, 'press': 7138, 'devot': 2610, 'pulp': 7245, 'fido': 3434, 'ann': 354, 'moss': 5932, 'dylan': 2889, 'blake': 981, 'nelson': 6276, 'testament': 8884, 'brillianc': 1599, 'implic': 4648, 'accident': 32, 'servant': 8023, 'butler': 1680, 'labor': 5169, 'pet': 6900, 'was': 9590, 'poke': 7057, 'bitter': 969, 'lake': 5179, 'rebelli': 7421, 'drift': 2829, 'deadpan': 2483, 'satire': 7787, 'drill': 2831, 'film festiv': 3523, 'time get': 9094, 'case br': 1777, 'br ever': 1360, 'be dure': 700, 'period br': 6877, 'script film': 7909, 'time be': 9077, 'take look': 8798, 'start get': 8512, 'case br br': 1778, 'br br ever': 1175, 'period br br': 6878, 'cold': 2093, 'silly': 8164, 'intelligent': 4749, 'revenge': 7575, 'jaw': 4857, 'realism': 7374, 'make be': 5535, 'so say': 8316, 'go ahead': 4063, 'exit': 3249, 'so never': 8306, 'br however': 1394, 'then so': 8937, 'br sum': 1513, 'war movi': 9577, 'br br however': 1200, 'br br sum': 1298, 'christma': 1990, 'scrooge': 7917, 'surpass': 8744, 'honesti': 4491, 'tribut': 9295, 'gift': 4013, 'trade': 9237, 'utter': 9409, 'express': 3279, 'maintain': 5532, 'integr': 4745, 'perhaps': 6874, 'alec': 213, 'carter': 1772, 'sincer': 8184, 'qualiti': 7274, 'mrs': 6181, 'anthoni': 367, 'roger': 7664, 'narrat': 6248, 'forev': 3788, 'schedul': 7861, 'holiday': 4466, 'time around': 9075, 'make seem': 5559, 'anyon have': 384, 'perform actor': 6858, 'make so': 5562, 'see actor': 7937, 'be make': 741, 'make charact': 5539, 'well then': 9737, 'then again': 8915, 'again be': 168, 'just as': 4959, 'be here': 724, 'ever film': 3180, 'watch see': 9629, 'time ever': 9090, 'just as well': 4960, 'baffl': 603, 'greenaway': 4142, 'titan': 9148, 'deft': 2526, 'introduct': 4786, 'shade': 8050, 'happiness': 4241, 'servic': 8024, 'exchang': 3236, 'matthew': 5683, 'disregard': 2706, 'abort': 8, 'plummer': 7037, 'pig': 6947, 'corps': 2281, 'degrad': 2528, 'directori': 2669, 'triumph': 9306, 'substance': 8678, 'accompani': 34, 'surreal': 8749, 'br beauti': 1112, 'world cinema': 9885, 'br none': 1442, 'viewer be': 9497, 'be film': 714, 'screen not': 7896, 'not long': 6431, 'long enough': 5393, 'enough be': 3055, 'make point': 5558, 'scene br': 7827, 'relationship father': 7476, 'father son': 3381, 'film first': 3527, 'actress film': 125, 'film line': 3562, 'yet again': 9967, 'sense br': 7994, 'br br none': 1236, 'scene br br': 7828, 'wife br br': 9797, 'anywhere': 401, 'adopt': 145, 'becaus want': 855, 'script just': 7911, 'so instead': 8292, 'survivor': 8753, 'flip': 3751, 'not look': 6432, 'now have': 6532, 'excel film': 3230, 'film cast': 3483, 'lampoon': 5182, 'becaus br': 839, 'not way': 6507, 'cast actor': 1786, 'becaus br br': 840, 'garbag': 3901, 'paris': 6744, 'birth': 956, 'queen': 7279, 'brooklyn': 1617, 'beach': 820, 'village': 9504, 'hotel': 4536, 'nomin': 6343, 'year back': 9938, 'piec garbag': 6940, 'york city': 9981, 'not feel': 6405, 'cast perform': 1799, 'br way': 1545, 'br film not': 1371, 'far br br': 3355, 'br br way': 1322, 'delight': 2536, 'invent': 4790, 'archer': 424, 'pan': 6729, 'coincidence': 2091, 'competit': 2169, 'scheme': 7862, 'own': 6704, 'outcom': 6681, 'allud': 234, 'abraham': 14, 'lawyer': 5223, 'broadcast': 1608, 'england': 3040, 'reev': 7458, 'exhibit': 3246, 'blue': 1007, 'america': 312, 'mouth': 5950, 'condemn': 2203, 'valuabl': 9419, 'niven': 6333, 'acquir': 49, 'br look': 1412, 'look way': 5415, 'idea not': 4608, 'place not': 6971, 'so here': 8291, 'be script': 782, 'script have': 7910, 'be point': 767, 'well see': 9734, 'know be': 5132, 'even so': 3157, 'so think': 8329, 'think film': 9019, 'film heart': 3539, 'quit so': 7292, 'br br look': 1215, 'superman': 8723, 'mighti': 5784, 'rambo': 7316, 'matrix': 5676, 'jacki': 4833, 'chan': 1853, 'jet': 4885, 'li': 5281, 'mask': 5653, 'choreograph': 1975, 'officer': 6580, 'department': 2559, 'jacki chan': 4834, 'bruce lee': 1624, 'jet li': 4886, 'premis film': 7126, 'film doe': 3503, 'be be': 675, 'be do': 699, 'watch so': 9631, 'br art': 1102, 'art film': 449, 'know film': 5138, 'lot lot': 5435, 'lot action': 5429, 'flock': 3754, 'dane': 2449, 'synopsi': 8779, 'onlin': 6629, 'dan': 2439, 'minute': 5827, 'badly': 602, 'becaus stori': 852, 'befor movi': 866, 'do so': 2746, 'script so': 7914, 'so make': 8301, 'believ charact': 891, 'realli feel': 7386, 'castl': 1803, 'sky': 8212, 'miyazaki': 5860, 'storytel': 8621, 'translat': 9256, 'movi feel': 6014, 'again just': 172, 'be now': 756, 'now here': 6533, 'book br': 1039, 'tast': 8824, 'steam': 8524, 'singl': 8188, 'redeem': 7448, 'anywher': 400, 'penni': 6822, 'associ': 496, 'slater': 8222, 'hapless': 4230, 'masterpiec': 5664, 'movi complet': 5990, 'complet wast': 2178, 'movi yet': 6126, 'not singl': 6478, 'br onli': 1454, 'posit review': 7089, 'tell film': 8857, 'film one': 3600, 'film let': 3559, 'film script': 3632, 'complet wast time': 2179, 'wast time br': 9597, 'br br onli': 1244, 'walt': 9554, 'roy': 7716, 'atlantis': 504, 'ideal': 4609, 'whack': 9754, 'till': 9068, 'hammi': 4220, 'steal': 8523, 'recal': 7423, 'forgett': 3791, 'interest not': 4763, 'thank god': 8895, 'charact actor': 1869, 'satir': 7786, 'magic': 5525, 'christ': 1983, 'br view': 1539, 'be stori': 794, 'br br view': 1319, 'antonio': 373, 'vibe': 9482, 'journalist': 4933, 'edgar': 2916, 'spend': 8427, 'poe': 7040, 'th': 8889, 'me': 5702, 'crypt': 2390, 'eeri': 2926, 'spend night': 8429, 'th film': 8891, 'intrigu': 4783, 'smell': 8245, 'textur': 8888, 'cinematograph': 2008, 'orang': 6648, 'glow': 4061, 'plastic': 6983, 'perspect': 6896, 'notion': 6519, 'himself': 4434, 'grandmoth': 4130, 'situation': 8202, 'cook': 2264, 'me br': 5703, 'himself br': 4435, 'br someon': 1500, 'end just': 3007, 'well watch': 9744, 'me br br': 5704, 'himself br br': 4436, 'br br someon': 1287, 'obtain': 6563, 'pleas': 7002, 'bottom': 1066, 'description': 2578, 'cbs': 1823, 'christmas': 1992, 'depression': 2564, 'hospit': 4531, 'shut': 8147, 'hank': 4228, 'russ': 7733, 'slip': 8234, 'explan': 3269, 'public': 7241, 'very': 9477, 'claus': 2030, 'suit': 8704, 'advice': 154, 'copy': 2272, 'com': 2111, 'copi film': 2271, 'very veri': 9478, 'now again': 6526, 'plot even': 7019, 'ireland': 4801, 'religi': 7485, 'stray': 8630, 'path': 6784, 'courtesi': 2316, 'cannib': 1725, 'clan': 2023, 'ton': 9176, 'nuditi': 6547, 'breed': 1585, 'ginger': 4018, 'slaughter': 8223, 'enhanc': 3044, 'off': 6574, 'spit': 8445, 'promis': 7208, 'downhill': 2800, 'beg': 872, 'form': 3795, 'gari': 3908, 'convent': 2255, 'knife': 5127, 'ram': 7314, 'flesh': 3744, 'jameson': 4845, 'breast': 1581, 'taylor': 8831, 'hay': 4336, 'nake': 6242, 'gori': 4109, 'worthwhile': 9903, 'eventu': 3171, 'concern': 2197, 'despit be': 2589, 'br budget': 1332, 'budget horror': 1640, 'rest film': 7547, 'thing start': 9008, 'amount time': 318, 'time wast': 9129, 'horror film': 4524, 'then just': 8928, 'film never': 3587, 'never get': 6299, 'get guy': 3967, 'guy get': 4190, 'rate br': 7339, 'have as': 4274, 'br br budget': 1148, 'rate br br': 7340, 'as well have': 472, 'saw': 7798, 'seller': 7988, 'lame': 5180, 'pink': 6953, 'fine': 3711, 'excus': 3241, 'peter seller': 6905, 'be there': 799, 'never have': 6303, 'produc film': 7184, 'rendit': 7502, 'myth': 6237, 'singing': 8187, 'instrument': 4742, 'bust': 1675, 'disney movi': 2701, 'definit not': 2525, 'not film': 6406, 'savag': 7790, 'trust': 9316, 'moments': 5881, 'reflect': 7460, 'br boy': 1119, 'moments br': 5882, 'br fact': 1365, 'fact film': 3309, 'film sever': 3636, 'br br boy': 1146, 'moments br br': 5883, 'br br also': 1127, 'br br fact': 1178, 'miller': 5794, 'superstar': 8726, 'awkward': 568, 'conclusion': 2201, 'sinc not': 8182, 'still not': 8559, 'disagre': 2676, 'bibl': 940, 'chip': 1966, 'grain': 4125, 'rice': 7598, 'runner': 7731, 'beast': 825, 'everyon see': 3206, 'see version': 7973, 'version be': 9470, 'still see': 8560, 'truck': 9312, 'sign': 8157, 'suspense': 8756, 'br base': 1110, 'group friend': 4161, 'act so': 73, 'budget film': 1639, 'flaw': 3738, 'discov': 2688, 'balanc': 609, 'remak': 7490, 'them': 8907, 'aforement': 160, 'teen': 8845, 'target': 8821, 'brave': 1570, 'plot so': 7031, 'even br': 3125, 'them br': 8908, 'br lack': 1404, 'night br': 6326, 'br script': 1489, 'script br': 7905, 'even show': 3156, 'save money': 7795, 'money br': 5891, 'even br br': 3126, 'them br br': 8909, 'br br script': 1277, 'script br br': 7906, 'money br br': 5892, 'andi': 329, 'land': 5184, 'water': 9642, 'proport': 7220, 'goldsworthi': 4096, 'join': 4917, 'concert': 2198, 'sight': 8156, 'back film': 582, 'slice': 8230, 'ashley': 475, 'judd': 4938, 'rubi': 7721, 'establish': 3107, 'identity': 4612, 'juri': 4956, 'prize': 7168, 'enthusiast': 3075, 'newman': 6316, 'told': 9168, 'florida': 3758, 'boil': 1021, 'sand': 7770, 'necess': 6261, 'day day': 2473, 'film festival': 3524, 'movi becaus': 5974, 'becaus not': 849, 'not mani': 6436, 'man not': 5597, 'riot': 7620, 'neighborhood': 6273, 'spoil': 8452, 'community': 2157, 'enjoy watch': 3051, 'act br': 54, 'howev not': 4555, 'comedy drama': 2134, 'so look': 8299, 'middl class': 5775, 'not interest': 6423, 'act br br': 55, 'rosenstrass': 7705, 'dvds': 2885, 'flash': 3734, 'tri be': 9278, 'be as': 671, 'as br': 459, 'year so': 9954, 'watch be': 9603, 'too long': 9197, 'as br br': 460, 'sitcom': 8199, 'decad': 2500, 'evan': 3118, 'aspir': 486, 'fulfil': 3854, 'dare': 2454, 'hesit': 4417, 'disciplin': 2685, 'thelma': 8906, 'contrast': 2249, 'perspective': 6897, 'crazi': 2339, 'wear': 9687, 'no': 6334, 'jackson': 4836, 'coleman': 2095, 'characteris': 1913, 'reson': 7537, 'mainstream': 5531, 'wherea': 9765, 'address': 138, 'sassi': 7784, 'jump': 4951, 'shark': 8066, 'accid': 31, 'mi': 5762, 'yet br': 9969, 'tri make': 9287, 'love wife': 5474, 'br kid': 1401, 'love relationship': 5465, 'brother sister': 1621, 'extrem well': 3288, 'show show': 8136, 'show be': 8120, 'br show': 1496, 'br mi': 1423, 'mi rating': 5765, 'yet br br': 9970, 'br br fan': 1179, 'br br kid': 1206, 'br br show': 1283, 'br br mi': 1224, 'br mi rating': 1425, 'stunt': 8662, 'fantast': 3349, 'flawless': 3740, 'listen': 5352, 'fight scene': 3439, 'be charact': 688, 'movi lot': 6043, 'bias': 939, 'departur': 2560, 'adventure': 151, 'just keep': 4990, 'recommend anyon': 7434, 'updat': 9395, 'aunt': 535, 'franc': 3813, 'bride': 1591, 'bed': 860, 'build': 1646, 'guess be': 4170, 'be sort': 791, 'movi minut': 6051, 'woman be': 9832, 'get hand': 3968, 'not much': 6445, 'yet not': 9973, 'not know': 6426, 'hat': 4266, 'service': 8025, 'awful': 565, 'ta': 8782, 'actor not': 112, 'have film': 4288, 'film littl': 3563, 'coupl hour': 2304, 'hour life': 4542, 'life watch': 5310, 'be look': 738, 'look not': 5410, 'not yet': 6511, 'yet just': 9972, 'just expect': 4976, 'otherwis': 6676, 'recogniz': 7432, 'fortunately': 3802, 'years': 9959, 'bar': 621, 'correct': 2283, 'murderer': 6203, 'relev': 7481, 'shakespear': 8055, 'revel': 7572, 'years br': 9960, 'year film': 9946, 'film focus': 3528, 'play charact': 6991, 'br documentari': 1351, 'documentari film': 2755, 'film book': 3476, 'years br br': 9961, 'br movi not': 1433, 'drama br br': 2815, 'br br documentari': 1166, 'cole': 2094, 'grave': 4137, 'pad': 6715, 'board': 1011, 'rhyme': 7596, 'forget': 3790, 'boring': 1059, 'pointless': 7055, 'skip': 8208, 'late night': 5198, 'also br': 260, 'br start': 1509, 'fall apart': 3329, 'minut long': 5822, 'easili be': 2902, 'sound br': 8401, 'corner': 2277, 'boot': 1050, 'stewart': 8537, 'novak': 6520, 'bicker': 941, 'letter': 5275, 'morgan': 5926, 'ambiti': 311, 'tracy': 9236, 'clerk': 2036, 'dismiss': 2698, 'clara': 2024, 'invit': 4795, 'snow': 8260, 'winter': 9815, 'glad': 4045, 'asid': 477, 'descript': 2577, 'extreme': 3289, 'perfectly': 6856, 'whenev': 9764, 'especially': 3103, 'earnest': 2898, 'broken': 1612, 'sweetheart': 8765, 'breakdown': 1578, 'lubitsch': 5483, 'creation': 2345, 'regist': 7466, 'chose': 1979, 'mail': 5530, 'harm': 4251, 'charming': 1927, 'comedi ever': 2128, 'ever just': 3184, 'love story': 5471, 'ever happen': 3182, 'get be': 3948, 'co work': 2075, 'veri beginning': 9448, 'stori film': 8586, 'film support': 3655, 'support charact': 8732, 'christma eve': 1991, 'even charact': 3128, 'tell br': 8855, 'br asid': 1105, 'thing film': 8988, 'wait see': 9544, 'also way': 288, 'do even': 2734, 'film scene': 3630, 'turn perform': 9333, 'br doe': 1352, 'doe film': 2760, 'story charact': 8613, 'as possibl': 466, 'help make': 4378, 'make even': 5540, 'be not': 754, 'film peopl': 3605, 'so have': 8290, 'film thing': 3663, 'film not film': 3593, 'br br doe': 1167, 'evening': 3168, 'intend': 4750, 'manag be': 5603, 'so movi': 8303, 'movie never': 6153, 'never ani': 6287, 'ani actor': 342, 'care happen': 1751, 'feel be': 3403, 'hunt': 4586, 'bigfoot': 942, 'pacif': 6709, 'stereotype': 8532, 'sasquatch': 7783, 'rifl': 7610, 'hope see': 4508, 'see lot': 7960, 'not like': 6429, 'just enjoy': 4973, 'get laugh': 3980, 'johnson': 4916, 'monkey': 5901, 'squeez': 8471, 'asham': 474, 'spend time': 8430, 'ever br': 3176, 'even make': 3143, 'minut life': 5821, 'everyon involv': 3205, 'ever br br': 3177, 'vanilla': 9428, 'logic': 5382, 'leader': 5230, 'hbo': 4339, 'butt': 1681, 'chemistry': 1946, 'album': 211, 'fade': 3318, 'drag': 2809, 'rant': 7329, 'setup': 8034, 'sometimes': 8371, 'hammer': 4219, 'phase': 6910, 'good': 4099, 'ripoff': 7623, 'heard': 4349, 'manager': 5606, 'ignor': 4618, 'hop': 4503, 'exist': 3247, 'be guy': 722, 'film then': 3661, 'then scene': 8934, 'br coupl': 1341, 'coupl year': 2306, 'too fast': 9191, 'realli work': 7403, 'stori then': 8602, 'then go': 8926, 'back watch': 592, 'yet so': 9975, 'br go': 1382, 'save time': 7797, 'br find': 1373, 'think not': 9025, 'film much': 3583, 'hip hop': 4441, 'thing even': 8986, 'br br coupl': 1157, 'br br go': 1191, 'br br find': 1183, 'dress': 2824, 'ie': 4616, 'jersey': 4877, 'giant': 4010, 'sf': 8047, 'bowl': 1074, 'africa': 161, 'further': 3874, 'communiti': 2156, 'coast': 2077, 'hood': 4498, 'vs': 9537, 'act way': 78, 'veri differ': 9450, 'hyde': 4593, 'glass': 4050, 'pervert': 6899, 'episode': 3088, 'playboy': 6999, 'girlfriend': 4028, 'veteran': 9480, 'donna': 2778, 'hmm': 4456, 'basement': 639, 'show time': 8139, 'want get': 9564, 'doe anyon': 2759, 'then come': 8920, 'mini': 5808, 'endur': 3031, 'exercis': 3245, 'tribe': 9294, 'opera': 6634, 'ability': 5, 'prepar': 7129, 'rush': 7732, 'get go': 3966, 'live life': 5372, 'rather br': 7345, 'well act': 9705, 'so scene': 8317, 'scene so': 7850, 'stage product': 8479, 'show have': 8128, 'rather br br': 7346, 'thi': 8971, 'vain': 9414, 'woodi': 9850, 'thi movi': 8973, 'movi br': 5981, 'star br': 8497, 'plot be': 7012, 'woodi allen': 9851, 'see film': 7952, 'movi br br': 5982, 'star br br': 8498, 'offbeat': 6575, 'acclaim': 33, 'world not': 9889, 'kurosawa': 5162, 'blockbust': 995, 'financi': 3700, 'dramas': 2816, 'uncle': 9369, 'stumbl': 8660, 'sake': 7755, 'salesman': 7757, 'bike': 943, 'shi': 8088, 'erot': 3095, 'margin': 5631, 'scope': 7880, 'meant': 5712, 'force': 3784, 'hollow': 4469, 'rip': 7621, 'cloth': 2064, 'silenc': 8160, 'ironically': 4804, 'painter': 6719, 'alert': 214, 'composit': 2185, 'design': 2582, 'underneath': 9373, 'sword': 8770, 'nonetheless': 6348, 'beard': 824, 'condit': 2204, 'end day': 3000, 'there not': 8962, 'not guy': 6416, 'have too': 4327, 'not time': 6495, 'time place': 9111, 'meant be': 5713, 'scene thing': 7852, 'thing look': 8996, 'movi score': 6086, 'tel': 8850, 'secondari': 7927, 'kiss': 5121, 'brutal': 1627, 'beauti film': 829, 'movi stori': 6095, 'film effect': 3507, 'effect not': 2932, 'want be': 9562, 'also effect': 263, 'movie plot': 6158, 'mitch': 5854, 'hide': 4422, 'jenni': 4870, 'sam': 7763, 'horrif': 4517, 'museum': 6209, 'laura': 5214, 'report': 7517, 'occur': 6568, 'meanwhil': 5714, 'nightmar': 6329, 'dig': 2634, 'creatur': 2348, 'russel': 7734, 'suddenly': 8695, 'plod': 7010, 'production': 7191, 'energi': 3035, 'anyone': 387, 'clear': 2034, 'tri help': 9284, 'base novel': 635, 'everyth film': 3210, 'belief': 888, 'film leav': 3558, 'war film': 9575, 'simon': 8168, 'pegg': 6818, 'magazin': 5522, 'superfici': 8721, 'tobi': 9156, 'britain': 1606, 'bullet': 1650, 'editor': 2922, 'fair': 3323, 'beam': 821, 'nail': 6240, 'goof': 4103, 'magazine': 5523, 'misunderstand': 5852, 'indiffer': 4686, 'beat': 826, 'em': 2970, 'alison': 224, 'olsen': 6597, 'arrog': 445, 'sophi': 8387, 'culture': 2400, 'needless': 6268, 'stardom': 8506, 'lust': 5500, 'britney': 1607, 'lose': 5424, 'huston': 4592, 'homag': 4476, 'equival': 3092, 'kitchen': 5122, 'branch': 1565, 'part life': 6759, 'br much': 1436, 'br matter': 1418, 'needless say': 6269, 'girl not': 4027, 'make person': 5557, 'anyway br': 397, 'give perform': 4041, 'love interest': 5458, 'also star': 284, 'film complet': 3490, 'back be': 577, 'be again': 664, 'star be': 8496, 'be interest': 730, 'see do': 7949, 'anyway br br': 398, 'basically': 643, 'conceiv': 2194, 'iraq': 4800, 'turd': 9324, 'world war': 9891, 'film kind': 3555, 'type film': 9358, 'not anyth': 6367, 'just look': 4999, 'end realli': 3013, 'rather watch': 7350, 'jackman': 4835, 'mile': 5789, 'be year': 818, 'point br': 7047, 'murder mysteri': 6202, 'be way': 813, 'have so': 4323, 'joke br': 4919, 'point br br': 7048, 'joke br br': 4920, 'spoiler alert': 8455, 'lot not': 5438, 'internet': 4776, 'glanc': 4048, 'cow': 2320, 'chicken': 1957, 'segment': 7982, 'comic': 2137, 'suicide': 8703, 'even know': 3141, 'not show': 6476, 'show even': 8124, 'keep mind': 5070, 'mind not': 5802, 'also time': 286, 'time take': 9121, 'life then': 5307, 'then not': 8931, 'not miss': 6439, 'fact be': 3306, 'be show': 787, 'fort': 3798, 'well enough': 9715, 'enough have': 3059, 'like film': 5322, 'br mind': 1426, 'score br': 7882, 'especi end': 3101, 'so often': 8309, 'br recommend': 1479, 'mind film': 5800, 'br br mind': 1225, 'score br br': 7883, 'br br recommend': 1267, 'pacino': 6711, 'speech': 8422, 'coffin': 2086, 'compliment': 2183, 'remark': 7492, 'interestingly': 4773, 'quit well': 7294, 'br talk': 1518, 'fabul': 3299, 'sirk': 8192, 'hudson': 4566, 'dorothi': 2784, 'malon': 5581, 'stack': 8474, 'sharon': 8067, 'instinct': 4738, 'montag': 5906, 'dimension': 2642, 'scratch': 7888, 'censor': 1832, 'chore': 1974, 'craft': 2326, 'to': 9153, 'rock hudson': 7654, 'br turn': 1532, 'turn film': 9331, 'soap opera': 8339, 'scratch head': 7889, 'let make': 5269, 'be bore': 679, 'favorit film': 3386, 'time see': 9117, 'br br turn': 1312, 'film entertain': 3510, 'entertain film': 3070, 'film today': 3667, 'cable': 1693, 'sole': 8347, 'indi film': 4682, 'film pretti': 3616, 'work film': 9866, 'stori charact': 8584, 'charact development': 1878, 'charact stori': 1901, 'check film': 1937, 'virus': 9516, 'newspap': 6318, 'reporter': 7518, 'cameraman': 1711, 'cohen': 2087, 'limb': 5329, 'brenda': 1586, 'feed': 3401, 'do favor': 2735, 'watch thing': 9634, 'school play': 7867, 'japan': 4853, 'obstacl': 6562, 'ww2': 9926, 'love woman': 5475, 'style movi': 8669, 'job br': 4898, 'movi manag': 6048, 'say be': 7800, 'be time': 802, 'job br br': 4899, 'subplot': 8675, 'credibl': 2351, 'suspend': 8755, 'addition': 137, 'cia': 2000, 'security': 7934, 'meat': 5718, 'bone': 1030, 'downright': 2802, 'just enough': 4974, 'unit state': 9388, 'br lot': 1413, 'time just': 9098, 'never happen': 6302, 'br br lot': 1216, 'ol': 6590, 'disbelief': 2683, 'mummi': 6199, 'second': 7926, 'subtleti': 8684, 'credibility': 2350, 'claw': 2031, 'distanc': 2707, 'fright': 3841, 'extraordinari': 3286, 'haunting': 4271, 'non': 6344, 'crowd': 2380, 'mall': 5580, 'slowli': 8238, 'neck': 6264, 'collection': 2100, 'quest': 7281, 'movi fact': 6009, 'movi almost': 5961, 'almost feel': 241, 'find be': 3702, 'film world': 3686, 'have look': 4300, 'br woman': 1548, 'too often': 9203, 'film there': 3662, 'just littl': 4998, 'horror br': 4521, 'film rate': 3621, 'still movi': 8557, 'mayb be': 5687, 'then too': 8943, 'br br woman': 1325, 'horror br br': 4522, 'shining': 8092, 'movi bore': 5980, 'life also': 5290, 'bring back': 1603, 'even now': 3148, 'not work': 6510, 'peopl movi': 6835, 'make horror': 5544, 'movi still': 6094, 'peopl watch': 6845, 'thing peopl': 9003, 'feel br': 3404, 'movi want': 6116, 'want go': 9566, 'time money': 9103, 'still love': 8555, 'do not': 2744, 'not let': 6428, 'feel br br': 3405, 'kane': 5050, 'orson': 6666, 'innov': 4714, 'shanghai': 8062, 'hindsight': 4438, 'all': 226, 'dim': 2641, 'intelligence': 4748, 'slick': 8231, 'wise': 9819, 'tongue': 9179, 'hubbi': 4565, 'sloan': 8235, 'hara': 4242, 'quirki': 7288, 'examin': 3225, 'court': 2315, 'request': 7524, 'closeup': 2063, 'sung': 8713, 'process': 7181, 'painting': 6720, 'film come': 3488, 'time movi': 9104, 'movi bit': 5978, 'way scene': 9671, 'orson well': 6667, 'besid be': 922, 'be director': 697, 'time well': 9132, 'well also': 9708, 'also quit': 279, 'charact film': 1882, 'here charact': 4396, 'time play': 9112, 'know br': 5133, 'here film': 4398, 'scene well': 7855, 'alway be': 296, 'time again': 9071, 'twist turn': 9353, 'probabl have': 7171, 'br note': 1448, 'know br br': 5134, 'br br note': 1238, 'intro': 4784, 'on': 6599, 'deed': 2516, 'piti': 6960, 'sacrifice': 7745, 'befor film': 865, 'part film': 6757, 'realli understand': 7401, 'film point': 3614, 'point view': 7054, 'br person': 1464, 'comment film': 2143, 'show act': 8116, 'not believ': 6374, 'film act': 3448, 'go watch': 4082, 'br br person': 1252, 'photograph': 6922, 'absenc': 16, 'meaning': 5710, 'theory': 8950, 'invas': 4789, 'alien': 221, 'gina': 4017, 'trigger': 9298, 'building': 1647, 'confusion': 2216, 'hospital': 4532, 'surround': 8750, 'anymor': 379, 'conspiraci': 2230, 'proper': 7215, 'package': 6714, 'lynch': 5503, 'kubrick': 5157, 'film now': 3596, 'now just': 6534, 'movi onli': 6063, 'just think': 5029, 'just hour': 4988, 'hour film': 4540, 'so far': 8280, 'review here': 7580, 'david lynch': 2465, 'way way': 9681, 'incompet': 4672, 'suitabl': 8705, 'seed': 7977, 'caught': 1817, 'tip': 9145, 'chair': 1846, 'miracul': 5833, 'buri': 1662, 'watch way': 9638, 'just sake': 5015, 'way plot': 9670, 'union': 9385, 'spice': 8434, 'campaign': 1714, 'plot just': 7022, 'know just': 5140, 'just there': 5027, 'film end': 3508, 'br twist': 1534, 'again again': 167, 'think br': 9016, 'be kind': 733, 'realli get': 7388, 'danc scene': 2444, 'scene then': 7851, 'br br twist': 1314, 'think br br': 9017, 'detect': 2598, 'homicide': 4486, 'rerun': 7526, 'friday': 3833, 'al': 204, 'get see': 3991, 'see end': 7950, 'resembl': 7529, 'deliver': 2538, 'daft': 2427, 'mayor': 5694, 'also interest': 268, 'assign': 493, 'slug': 8240, 'ryan': 7741, 'minutes': 5828, 'bonus': 1034, 'film becaus': 3470, 'too make': 9198, 'br day': 1344, 'part becaus': 6754, 'make not': 5556, 'war ii': 9576, 'year befor': 9940, 'minutes br': 5829, 'film day': 3495, 'be dvd': 701, 'whi not': 9774, 'br br day': 1159, 'world war ii': 9892, 'minutes br br': 5830, 'pretenti': 7144, 'conveni': 2254, 'neighbor': 6272, 'appear be': 412, 'transit': 9255, 'household': 4550, 'georgia': 3940, 'back br': 578, 'br begin': 1114, 'br use': 1536, 'back br br': 579, 'br br begin': 1142, 'br br use': 1316, 'duke': 2856, 'hazzard': 4338, 'california': 1702, 'somewher': 8373, 'cousin': 2318, 'johnni': 4915, 'bo': 1010, 'rider': 7607, 'jessica': 4881, 'simpson': 8176, 'bikini': 945, 'reynold': 7595, 'jessica simpson': 4882, 'well even': 9716, 'jule': 4947, 'naiv': 6241, 'expand': 3251, 'realli see': 7399, 'watch just': 9618, 'cheesi': 1942, 'henchman': 4382, 'resort': 7538, 'gimmick': 4016, 'contin': 2244, 'dracula': 2807, 'stake': 8481, 'brush': 1626, 'ground': 4159, 'el': 2946, 'scientist': 7876, 'rocket': 7659, 'furthermore': 3875, 'luthor': 5501, 'stab': 8473, 'slam': 8213, 'brick': 1590, 'notic': 6517, 'charge': 1920, 'wreck': 9908, 'loyalti': 5481, 'travesty': 9267, 'batman': 652, 'interpret': 4778, 'bend': 907, 'first let': 3719, 'let just': 5266, 'comment movie': 2146, 'video game': 9490, 'thing say': 9005, 'film fact': 3516, 'fact just': 3310, 'just like': 4997, 'write review': 9917, 'review br': 7577, 'plot twist': 7034, 'turn be': 9328, 'movi titl': 6106, 'just make': 5001, 'br speak': 1505, 'know movi': 5141, 'fact so': 3314, 'movi then': 6101, 'anyon not': 385, 'buy dvd': 1684, 'not make': 6435, 'be fan': 711, 'fan see': 3345, 'movie just': 6147, 'review br br': 7578, 'br br speak': 1291, 'film not be': 3591, 'digniti': 2637, 'becam': 835, 'societi': 8343, 'know expect': 5137, 'love also': 5452, 'role play': 7678, 'chamberlain': 1850, 'confirm': 2212, 'propheci': 7218, 'drown': 2841, 'owl': 6703, 'world br': 9883, 'dream sequenc': 2822, 'hour so': 4545, 'however not': 4561, 'be call': 685, 'world br br': 9884, 'horrend': 4515, 'anna': 355, 'par': 6734, 'keaton': 5062, 'judgement': 4942, 'act time': 76, 'student film': 8652, 'course not': 2314, 'part well': 6767, 'well br': 9710, 'br john': 1399, 'be role': 777, 'well br br': 9711, 'br br john': 1204, 'subject': 8673, 'plight': 7009, 'br even': 1359, 'come life': 2123, 'br br even': 1174, 'ceremoni': 1840, 'steve': 8534, 'lemmon': 5249, 'script not': 7912, 'not use': 6500, 'use film': 9403, 'film fall': 3518, 'come be': 2119, 'ever even': 3178, 'jack lemmon': 4829, 'coincid': 2090, 'suburb': 8686, 'potter': 7101, 'observ': 6560, 'cari': 1758, 'loy': 5480, 'melvyn': 5730, 'timeless': 9136, 'barrier': 631, 'achiev': 43, 'cube': 2394, 'muriel': 6204, 'bath': 649, 'estat': 3108, 'attorney': 522, 'foundat': 3809, 'flare': 3733, 'delivery': 2541, 'farce': 3363, 'epitom': 3089, 'blend': 989, 'foil': 3767, 'shannon': 8063, 'mary': 5652, 'beaver': 834, 'lovabl': 5449, 'vintag': 9509, 'dunn': 2862, 'tomorrow': 9175, 'trailer': 9246, 'cari grant': 1759, 'film year': 3687, 'year now': 9951, 'today br': 9158, 'version movi': 9474, 'today br br': 9159, 'br br line': 1213, 'dutch': 2876, 'languag': 5190, 'recall': 7424, 'widow': 9795, 'spider': 8435, 'prey': 7152, 'web': 9691, 'morbid': 5920, 'imagination': 4634, 'gerard': 3941, 'speaker': 8416, 'insan': 4716, 'guest': 4172, 'wealthi': 9685, 'learn': 5236, 'recount': 7443, 'hollywood film': 4472, 'get know': 3979, 'work be': 9861, 'captain': 1738, 'cg': 1842, 'stud': 8650, 'jude': 4939, 'paltrow': 6727, 'infinit': 4696, 'nothing': 6516, 'deliveri': 2540, 'polli': 7068, 'whine': 9781, 'heroine': 4414, 'phantom': 6909, 'steadi': 8522, 'progress': 7204, 'key': 5085, 'reunit': 7570, 'separ': 8002, 'nobodi': 6337, 'prop': 7213, 'course br': 2312, 'save movi': 7796, 'just time': 5030, 'charact play': 1895, 'rent movi': 7509, 'movi know': 6039, 'action movi': 89, 'realli care': 7383, 'face not': 3303, 'even get': 3136, 'course br br': 2313, 'teenager': 8848, 'recreat': 7445, 'ape': 405, 'canyon': 1729, 'incid': 4666, 'youth': 9987, 'authenticity': 541, 'expedit': 3260, 'creature': 2349, 'trip': 9302, 'worthi': 9900, 'boredom': 1056, 'begin movi': 876, 'movi also': 5962, 'thing have': 8992, 'hour half': 4541, 'perhap even': 6873, 'mccartney': 5698, 'beatl': 827, 'feat': 3396, 'nicholson': 6322, 'douglas': 2790, 'they': 8970, 'yesterday': 9965, 'treasur': 9269, 'lennon': 5253, 'doubl': 2786, 'harrison': 4255, 'crack': 2324, 'john lennon': 4912, 'goofi': 4104, 'mitchum': 5857, 'heartfelt': 4355, 'apolog': 407, 'construct': 2233, 'ya': 9931, 'watcher': 9640, 'ring': 7619, 'imit': 4637, 'freak': 3826, 'even plot': 3149, 'movi appeal': 5966, 'just show': 5020, 'rip off': 7622, 'get start': 3993, 'potenti be': 7099, 'voyag': 9536, 'sore': 8390, 'enterpris': 3067, 'introduction': 4787, 'short': 8107, 'trek': 9274, 'subtext': 8680, 'enterprise': 3068, 'launch': 5213, 'block': 994, 'oppos': 6642, 'universe': 9389, 'interact': 4752, 'conclud': 2199, 'arrow': 446, 'be still': 793, 'theme song': 8913, 'series br': 8018, 'get littl': 3982, 'br feel': 1367, 'school kid': 7866, 'br take': 1517, 'series br br': 8019, 'br br feel': 1180, 'br br take': 1302, 'complain': 2172, 'craven': 2335, 'forever': 3789, 'have way': 4331, 'way end': 9654, 'never watch': 6314, 'benefit': 909, 'diana': 2615, 'paint': 6718, 'drain': 2811, 'troma': 9308, 'compet': 2168, 'bargain': 626, 'understood': 9377, 'hum': 4571, 'altern': 292, 'give impress': 4038, 'lot fun': 5434, 'direction br': 2653, 'even script': 3154, 'direction br br': 2654, 'tower': 9229, 'instal': 4727, 'wheel': 9761, 'guid': 4174, 'missil': 5846, 'br writer': 1554, 'br br br': 1147, 'br br writer': 1329, 'clash': 2026, 'subtitl': 8681, 'not often': 6451, 'often film': 6583, 'film move': 3580, 'say watch': 7813, 'watch becaus': 9604, 'becaus see': 850, 'instead just': 4737, 'veri film': 9454, 'just use': 5035, 'see happen': 7956, 'appearance': 413, 'movi think': 6104, 'br mani': 1417, 'mani thing': 5616, 'movi wast': 6117, 'movi wast time': 6118, 'wast time money': 9598, 'respond': 7542, 'dozen': 2804, 'topic': 9217, 'properly': 7216, 'sustain': 8759, 'caine': 1699, 'dickinson': 2620, 'demonstr': 2548, 'medium': 5722, 'dress kill': 2825, 'film director': 3501, 'kind thing': 5114, 'thing like': 8995, 'way describ': 9653, 'see director': 7948, 'director work': 2667, 'scene movie': 7845, 'still be': 8542, 'film messag': 3576, 'director movi': 2664, 'creat film': 2344, 'chaos': 1865, 'distributor': 2715, 'classic': 2028, 'film reason': 3624, 'reason film': 7413, 'world film': 9887, 'mean film': 5708, 'page': 6716, 'wed': 9694, 'crude': 2382, 'hardi': 4247, 'rival': 7628, 'brand': 1566, 'placement': 6973, 'rosemari': 7704, 'dealt': 2487, 'just br': 4966, 'just br br': 4967, 'racist': 7300, 'barrel': 629, 'perceiv': 6852, 'surfac': 8740, 'provok': 7233, 'empath': 2980, 'read comment': 7369, 'charact movi': 1890, 'br know': 1403, 'br br know': 1208, 'joshua': 4931, 'awar': 556, 'shed': 8074, 'cab': 1690, 'crazy': 2340, 'brink': 1604, 'otherwise': 6677, 'kid movi': 5094, 'yet see': 9974, 'have idea': 4294, 'robot': 7650, 'obsess': 6561, 'show ever': 8125, 'even end': 3130, 'one be': 6605, 'br well': 1546, 'blah blah': 977, 'so just': 8294, 'not recommend': 6469, 'br br well': 1323, 'is': 4806, 'body': 1018, 'upon': 9396, 'propaganda': 7214, 'commit': 2151, 'is br': 4807, 'way peopl': 9669, 'often not': 6584, 'is br br': 4808, 'lost': 5427, 'matt': 5677, 'superbl': 8720, 'veri littl': 9459, 'littl stori': 5367, 'hill': 4428, 'stripper': 8642, 'ha': 4197, 'angri': 339, 'never find': 6297, 'ha ha': 4198, 'vinc': 9506, 'vaughn': 9432, 'travolta': 9268, 'preview': 7151, 'santa': 7776, 'nope': 6351, 'well say': 9732, 'say movi': 7806, 'have have': 4291, 'hope be': 4505, 'preston': 7140, 'dilemma': 2639, 'barrymor': 632, 'here have': 4400, 'move pace': 5954, 'henri': 4383, 'horrifi': 4518, 'whit': 9783, 'resolution': 7535, 'speaking': 8417, 'also moment': 274, 'power film': 7108, 'music be': 6211, 'be quit': 769, 'candid': 1722, 'lifetime': 5314, 'thurman': 9060, 'templ': 8864, 'disjoint': 2696, 'dead': 2482, 'attempt be': 512, 'well here': 9720, 'amus': 319, 'br messag': 1422, 'messag film': 5752, 'piec art': 6936, 'buscemi': 1669, 'dawson': 2468, 'forgot': 3793, 'give chanc': 4034, 'york citi': 9980, 'sex film': 8041, 'get movie': 3986, 'song danc': 8377, 'that br': 8898, 'that br br': 8899, 'patton': 6795, 'tank': 8816, 'fist': 3726, 'profan': 7194, 'alike': 223, 'peck': 6812, 'macarthur': 5507, 'debat': 2496, 'finger': 3712, 'eyebrow': 3294, 'crawl': 2337, 'anger': 336, 'helm': 4373, 'korea': 5151, 'robbin': 7643, 'image': 4628, 'decent': 2503, 'ash': 473, 'coaster': 2078, 'companion': 2159, 'argument': 427, 'delay': 2532, 'recaptur': 7425, 'pride': 7154, 'flag': 3730, 'bow': 1073, 'truman': 9315, 'glori': 4056, 'caesar': 1694, 'shake': 8053, 'clown': 2066, 'be yet': 819, 'later br': 5201, 'much time': 6192, 'way life': 9662, 'have say': 4318, 'person movi': 6891, 'doe job': 2761, 'br never': 1439, 'get help': 3970, 'later br br': 5202, 'br br never': 1233, 'bum': 1652, 'marie': 5634, 'café': 1695, 'gilbert': 4015, 'dump': 2860, 'bi': 938, 'whore': 9789, 'hence': 4381, 'aimless': 196, 'lament': 5181, 'film go': 3534, 'not love': 6434, 'get job': 3975, 'br bi': 1116, 'job be': 4897, 'br titl': 1528, 'charact well': 1908, 'littl br': 5361, 'br br titl': 1309, 'revolution': 7588, 'audit': 533, 'duel': 2855, 'laser': 5195, 'battle': 654, 'peopl make': 6834, 'also not': 277, 'use music': 9404, 'then make': 8929, 'time almost': 9073, 'becaus movie': 848, 'barney': 628, 'experiment': 3266, 'readi': 7372, 'ship': 8093, 'fat': 3375, 'humili': 4575, 'resist': 7533, 'sentenc': 7998, 'itself': 4821, 'pearl': 6811, 'diver': 2720, 'wisdom': 9818, 'whale': 9755, 'outfit': 6683, 'patch': 6783, 'robbi': 7642, 'assassin': 488, 'destruct': 2594, 'bunuel': 1659, 'frequent': 3832, 'imagery': 4630, 'look film': 5402, 'not forget': 6409, 'get then': 3994, 'so becaus': 8268, 'itself br': 4822, 'so let': 8296, 'line not': 5342, 'so speak': 8322, 'be person': 763, 'br forget': 1376, 'her br': 4387, 'thing just': 8993, 'hope get': 4506, 'piec trash': 6941, 'itself br br': 4823, 'br br forget': 1185, 'her br br': 4388, 'chiba': 1954, 'fighter': 3441, 'scriptwrit': 7916, 'meaningless': 5711, 'ani kind': 347, 'make world': 5574, 'wwii': 9929, 'secondly': 7928, 'menace': 5737, 'peopl still': 6840, 'loud': 5445, 'contrari': 2248, 'tend': 8868, 'parker': 6746, 'raini': 7310, 'as be': 458, 'so keep': 8295, 'minut movi': 5823, 'not funni': 6411, 'littl movi': 5366, 'see work': 7975, 'recommend movie': 7440, 'websit': 9692, 'have budget': 4279, 'enough keep': 3060, 'keep interest': 5069, 'enough get': 3058, 'quantum': 7277, 'mechan': 5719, 'cap': 1730, 'nonsense': 6349, 'dick': 2618, 'go away': 4066, 'south': 8406, 'vote': 9532, 'realli movie': 7394, 'manag make': 5605, 'play veri': 6998, 'choreographi': 1976, 'behold': 885, 'dancing': 2447, 'childhood': 1961, 'origin stori': 6662, 'differ film': 2627, 'music br': 6212, 'br one': 1453, 'have just': 4297, 'love br': 5454, 'music br br': 6213, 'br br one': 1243, 'love br br': 5455, 'drink': 2832, 'stream': 8632, 'act even': 59, 'even actor': 3121, 'actor play': 115, 'near': 6259, 'woo': 9847, 'phillip': 6914, 'wilson': 9804, 'governor': 4115, 'cyborg': 2418, 'damm': 2434, 'academi': 25, 'explod': 3271, 'van damm': 9425, 'even close': 3129, 'screening': 7898, 'virgin': 9513, 'movi time': 6105, 'fan movi': 3342, 'too much': 9201, 'also scene': 281, 'br definit': 1345, 'see year': 7976, 'br br definit': 1160, 'countless': 2295, 'counterpart': 2294, 'grayson': 4139, 'inclus': 4670, 'two': 9355, 'initi': 4707, 'access': 30, 'most': 5933, 'not exist': 6400, 'featur film': 3398, 'film featur': 3521, 'onli problem': 6626, 'too charact': 9187, 'charact act': 1868, 'have charact': 4280, 'plot well': 7035, 'team up': 8836, 'effort be': 2936, 'be let': 735, 'make up': 5568, 'quentin': 7280, 'rap': 7330, 'annoying': 360, 'movi say': 6084, 'start watch': 8513, 'next': 6319, 'sydney': 8771, 'anderson': 328, 'plug': 7036, 'bernsen': 920, 'spooki': 8459, 'exception': 3234, 'glee': 4051, 'somewhere': 8374, 'angl': 337, 'display': 2704, 'flair': 3731, 'cell': 1828, 'tale crypt': 8810, 'kind guy': 5111, 'go way': 4083, 'not lot': 6433, 'especi scene': 3102, 'cell phone': 1829, 'myer': 6231, 'seuss': 8035, 'austin': 537, 'resurrect': 7560, 'show film': 8126, 'skit': 8210, 'rot': 7707, 'corpse': 2282, 'scoop': 7879, 'superhero': 8722, 'old': 6591, 'apparently': 409, 'porno': 7077, 'overcom': 6698, 'year old': 9952, 'film budget': 3479, 'budget br': 1638, 'matter film': 5681, 'start finish': 8511, 'say movie': 7807, 'film career': 3482, 'detach': 2596, 'julia': 4949, 'dictat': 2621, 'uniform': 9384, 'hire': 4443, 'awe': 562, 'suppress': 8737, 'too far': 9190, 'in law': 4660, 'abysm': 24, 'random': 7323, 'remot': 7498, 'movi seri': 6088, 'actor movie': 111, 'saga': 7752, 'enjoy movie': 3050, 'dure movie': 2869, 'story just': 8615, 'section': 7932, 'inher': 4705, 'enemy': 3033, 'loyalty': 5482, 'hong': 4494, 'ther': 8951, 'film recommend': 3625, 'here be': 4393, 'film doe not': 3504, 'trivia': 9307, 'homer': 4483, 'technology': 8844, 'error': 3097, 'von': 9530, 'shepard': 8083, 'sort movi': 8396, 'br br sort': 1288, 'boost': 1049, 'elder': 2948, 'film industry': 3548, 'stori tell': 8601, 'amateur': 304, 'promise': 7209, 'ear': 2892, 'porn': 7076, 'guitar': 4179, 'normally': 6353, 'filmmaker': 3691, 'popcorn': 7074, 'just work': 5043, 'let see': 5272, 'comment br': 2141, 'plot charact': 7015, 'course be': 2311, 'comment br br': 2142, 'br not even': 1445, 'purport': 7262, 'how': 4552, 'resourc': 7539, 'dispos': 2705, 'gate': 3913, 'locker': 5380, 'boast': 1012, 'myra': 6232, 'bite': 967, 'do anyth': 2730, 'train wreck': 9248, 'movi befor': 5975, 'coward': 2321, 'occup': 6567, 'bunker': 1657, 'articl': 453, 'website': 9693, 'special': 8419, 'rabbit': 7296, 'favourit': 3390, 'innoc': 4712, 'ambit': 310, 'attention': 519, 'confront': 2214, 'constitut': 2232, 'toy': 9232, 'strange': 8628, 'sync': 8777, 'pirat': 6956, 'visibl': 9517, 'swell': 8766, 'glamor': 4047, 'semblanc': 7989, 'knee': 5125, 'living': 5373, 'pool': 7071, 'sir': 8191, 'looney': 5416, 'throne': 9050, 'rub': 7718, 'probably': 7174, 'unravel': 9391, 'ludicr': 5491, 'jerk': 4873, 'ordeal': 6650, 'film age': 3453, 'attent detail': 518, 'also be': 258, 'have use': 4328, 'problem film': 7177, 'guy girl': 4191, 'none actor': 6346, 'film here': 3540, 'here just': 4402, 'scene just': 7840, 'veri long': 9460, 'wonder just': 9841, 'lurk': 5499, 'championship': 1852, 'sport': 8460, 'location': 5378, 'device': 2607, 'conduct': 2206, 'jeffrey': 4867, 'stem': 8528, 'cancer': 1720, 'facil': 3304, 'fanci': 3347, 'sailor': 7753, 'stalk': 8483, 'rubber': 7719, 'still so': 8561, 'alway so': 300, 'point movi': 7051, 'movi use': 6113, 'set up': 8030, 'br lead': 1406, 'someon have': 8358, 'make ani': 5534, 'feel so': 3412, 'reason watch': 7418, 'br br lead': 1209, 'director film': 2660, 'too just': 9195, 'just feel': 4977, 'mermaid': 5746, 'ariel': 428, 'jodi': 4902, 'benson': 913, 'have lot': 4301, 'just seem': 5019, 'not veri': 6501, 'watch ani': 9602, 'movi look': 6042, 'look back': 5396, 'back movi': 586, 'just laugh': 4994, 'coop': 2266, 'hungri': 4585, 'diego': 2625, 'saint': 7754, 'lean': 5234, 'basketbal': 645, 'recruit': 7446, 'mate': 5672, 'beer': 862, 'line movie': 5341, 'movie movie': 6152, 'movi sinc': 6090, 'buzz': 1686, 'girl be': 4022, 'again not': 175, 'role just': 7674, 'harrison ford': 4256, 'linda': 5334, 'thankfully': 8896, 'material': 5674, 'lesli': 5257, 'properti': 7217, 'freddi': 3827, 'anni': 357, 'ross': 7706, 'tommi': 9174, 'sullivan': 8706, 'farnsworth': 3367, 'storm': 8609, 'peril': 6875, 'volum': 9527, 'lip': 5348, 'make sense': 5560, 'prove be': 7230, 'get back': 3947, 'border': 1052, 'midst': 5783, 'carpet': 1767, 'elit': 2958, 'equip': 3090, 'tube': 9320, 'armor': 435, 'zone': 9995, 'peopl involv': 6831, 'not person': 6457, 'mile away': 5790, 'act charact': 57, 'not say': 6471, 'say much': 7808, 'rodney': 7662, 'wive': 9827, 'even remot': 3152, 'time thing': 9123, 'instead film': 4736, 'allow be': 233, 'not think': 6494, 'bin': 950, 'recommend watch': 7441, 'movie have': 6145, 'someth happen': 8365, 'group peopl': 4162, 'almost hour': 243, 'watch minut': 9619, 'shirt': 8095, 'sap': 7778, 'clifford': 2046, 'hopeless': 4509, 'voodoo': 9531, 'excruci': 3240, 'momentum': 5884, 'welcom': 9704, 'bela': 886, 'lugosi': 5492, 'dud': 2852, 'act cast': 56, 'thing bit': 8980, 'bela lugosi': 887, 'only': 6630, 'kapoor': 5051, 'flee': 3742, 'bore film': 1054, 'let alon': 5261, 'piec crap': 6938, 'elsewhere': 2967, 'netflix': 6282, 'graini': 4126, 'br wonder': 1549, 'br realli': 1477, 'interest story': 4768, 'story not': 8617, 'care charact': 1750, 'do make': 2740, 'make time': 5567, 'br br wonder': 1326, 'br br realli': 1265, 'pose': 7086, 'cope': 2269, 'essenti': 3106, 'bout': 1072, 'instant': 4731, 'super': 8718, 'br movie': 1434, 'back story': 589, 'br check': 1336, 'br br movie': 1229, 'br br check': 1152, 'circl': 2011, 'grandma': 4129, 'evolv': 3220, 'tree': 9273, 'film probabl': 3617, 'do much': 2743, 'plot point': 7029, 'diner': 2644, 'derang': 2568, 'alik': 222, 'wick': 9790, 'swing': 8768, 'drunken': 2847, 'rick': 7602, 'kiddi': 5095, 'pant': 6732, 'tri not': 9288, 'make look': 5547, 'dress up': 2826, 'pecker': 6813, 'intent': 4751, 'watchabl': 9639, 'chang way': 1861, 'lot thing': 5442, 'later still': 5204, 'not here': 6419, 'line film': 5339, 'believe': 897, 'fishburn': 3724, 'perform cast': 6862, 'career br': 1754, 'think thing': 9027, 'career br br': 1755, 'eva': 3117, 'continuity': 2246, 'commentary': 2149, 'take role': 8803, 'movie film': 6141, 'film student': 3651, 'vengeance': 9441, 'so take': 8325, 'take lot': 8799, 'get well': 4003, 'so watch': 8331, 'well together': 9741, 'peopl realli': 6837, 'realli say': 7398, 'recommend br': 7436, 'br direct': 1348, 'fun film': 3861, 'recommend br br': 7437, 'br br direct': 1163, 'select': 7985, 'thinner': 9031, 'soup': 8404, 'leagu': 5232, 'competition': 2170, 'core': 2274, 'reason movi': 7414, 'tv series': 9342, 'movi scene': 6085, 'rubbish': 7720, 'accuraci': 39, 'moment not': 5880, 'station': 8517, 'compani': 2158, 'bbc': 659, 'python': 7270, 'circus': 2013, 'canada': 1718, 'offend': 6576, 'bravo': 1572, 'tv station': 9344, 'comedy not': 2135, 'thing watch': 9011, 'watch then': 9633, 'comedy br': 2132, 'br guy': 1385, 'stori here': 8588, 'end not': 3011, 'not watch': 6506, 'watch episod': 9611, 'cheer': 1940, 'ego': 2938, 'thing get': 8989, 'get just': 3976, 'show not': 8134, 'work not': 9871, 'thing make': 8997, 'make just': 5546, 'heroin': 4413, 'look too': 5414, 'zombie': 9994, 'incarn': 4664, 'context': 2243, 'moder': 5869, 'sketch': 8205, 'relentless': 7480, 'insert': 4718, 'artifici': 454, 'represent': 7519, 'bear': 823, 'obnoxi': 6558, 'trait': 9250, 'helen': 4368, 'golf': 4097, 'bori': 1057, 'karloff': 5055, 'sympathi': 8776, 'paranoia': 6740, 'here see': 4405, 'now be': 6527, 'film joke': 3552, 'so way': 8332, 'bori karloff': 1058, 'not speak': 6481, 'br bit': 1117, 'thinking': 9030, 'watch now': 9623, 'do be': 2731, 'watch hour': 9615, 'act ever': 60, 'rent movie': 7510, 'be right': 776, 'invis': 4794, 'eleph': 2955, 'gorilla': 4110, 'yeah': 9935, 'plot time': 7033, 'not idea': 6421, 'whi be': 9768, 'interest br': 4755, 'interest br br': 4756, 'barri': 630, 'everyone': 3207, 'network': 6283, 'hound': 4538, 'hartman': 4262, 'day time': 2477, 'just bit': 4965, 'feel sorri': 3413, 'life so': 5306, 'not movie': 6444, 'movie however': 6146, 'first movi': 3720, 'movi part': 6064, 'also part': 278, 'jazz': 4860, 'june': 4952, 'following': 3771, 'graduat': 4122, 'be entertain': 706, 'almost film': 242, 'puerto': 7243, 'week': 9696, 'film tv': 3670, 'of': 6573, 'rank': 7327, 'trilogy': 9300, 'vader': 9412, 'emperor': 2982, 'bolt': 1025, 'helmet': 4374, 'betray': 927, 'luke': 5493, 'theori': 8949, 'br becaus': 1113, 'return jedi': 7568, 'br origin': 1456, 'br br becaus': 1141, 'br br origin': 1246, 'necessarili': 6263, 'dave': 2462, 'way go': 9658, 'like see': 5327, 'wtf': 9925, 'traffic': 9241, 'grief': 4148, 'lung': 5497, 'horni': 4514, 'sleazi': 8226, 'assistant': 495, 'closet': 2062, 'everybody': 3202, 'get head': 3969, 'woman br': 9833, 'woman br br': 9834, 'epic': 3084, 'motiv': 5944, 'zenia': 9990, 'bulk': 1648, 'draft': 2808, 'august': 534, 'linger': 5344, 'coffe': 2085, 'total': 9225, 'psycho': 7236, 'mastermind': 5663, 'impli': 4647, 'wonderland': 9846, 'psycholog thriller': 7238, 'be story': 795, 'br book': 1118, 'point film': 7049, 'run around': 7727, 'law order': 5219, 'woman not': 9837, 'way get': 9657, 'book not': 1043, 'not read': 6464, 'year year': 9957, 'go as': 4065, 'book film': 1041, 'br tri': 1531, 'pay attent': 6803, 'creat charact': 2343, 'br there': 1522, 'be tv': 806, 'br br tri': 1311, 'clich': 2038, 'bucket': 1633, 'interrupt': 4779, 'nerd': 6280, 'reel': 7457, 'molli': 5874, 'clumsi': 2070, 'difficulti': 2633, 'br set': 1494, 'cast also': 1787, 'origin film': 6658, 'cast role': 1800, 'role well': 7679, 'br br set': 1281, 'dj': 2727, 'honest': 4489, 'ramon': 7317, 'subway': 8687, 'climat': 2048, 'pg': 6907, 'so bore': 8270, 'movi act': 5957, 'fun br': 3859, 'movie look': 6149, 'also get': 266, 'fun br br': 3860, 'fraud': 3825, 'cheat': 1933, 'deanna': 2489, 'durbin': 2864, 'contract': 2247, 'younger': 9985, 'loui': 5446, 'smash': 8244, 'aplomb': 406, 'craig': 2327, 'kay': 5059, 'warm': 9582, 'soprano': 8389, 'pat': 6782, 'energet': 3034, 'barn': 627, 'charl': 1923, 'stuart': 8648, 'contriv': 2251, 'elect': 2949, 'chairman': 1847, 'triad': 9291, 'cheung': 1952, 'worthwhil': 9902, 'hong kong': 4495, 'concentr': 2195, 'liter': 5354, 'safeti': 7751, 'wire': 9817, 'rate film': 7341, 'plot movi': 7025, 'compar film': 2162, 'rate movi': 7342, 'even scene': 3153, 'then watch': 8946, 'movi mani': 6049, 'even today': 3163, 'film piec': 3610, 'just goe': 4984, 'even watch': 3165, 'movi do': 5997, 'just befor': 4963, 'director not': 2665, 'watch have': 9614, 'deep': 2517, 'charact way': 1907, 'left': 5243, 'iv': 4825, 'distribut': 2713, 'afford': 159, 'grail': 4124, 'still enjoy': 8545, 'comfort': 2136, 'greed': 4140, 'streak': 8631, 'ed': 2911, 'tv movie': 9339, 'robberi': 7640, 'money not': 5896, 'never even': 6294, 'mayb have': 5689, 'have movie': 4306, 'have enjoy': 4284, 'filter': 3695, 'movie love': 6150, 'kung': 5160, 'fu': 3851, 'mold': 5872, 'chimp': 1964, 'retriev': 7564, 'lewis': 5280, 'railroad': 7308, 'worker': 9880, 'rod': 7661, 'kung fu': 5161, 'piec cinema': 6937, 'yet still': 9976, 'way make': 9664, 'game br': 3893, 'never let': 6307, 'even call': 3127, 'game br br': 3894, 'ponder': 7070, 'marlon': 5640, 'jonathan': 4925, 'heavi': 4359, 'rage': 7305, 'purist': 7258, 'br effect': 1354, 'marlon brando': 5641, 'work also': 9858, 'also work': 290, 'work becaus': 9862, 'even realli': 3151, 'br br effect': 1169, 'geni': 3929, 'littl boy': 5360, 'information': 4701, 'translation': 9257, 'rooney': 7700, 'albert': 210, 'be instead': 729, 'instead br': 4734, 'br review': 1483, 'audience br': 530, 'instead br br': 4735, 'br br review': 1271, 'audience br br': 531, 'aka': 202, 'rebellion': 7422, 'punishment': 7252, 'everywhere': 3214, 'acknowledg': 47, 'redeem qualiti': 7449, 'ever have': 3183, 'audio': 532, 'bonham': 1031, 'be use': 807, 'enjoy br': 3046, 'bonham carter': 1032, 'enjoy br br': 3047, 'los': 5423, 'sandra': 7773, 'streisand': 8635, 'awhil': 566, 'honesty': 4493, 'prince': 7160, 'sadness': 7749, 'davis': 2466, 'monk': 5900, 'intim': 4781, 'prayer': 7114, 'email': 2971, 'see thing': 7971, 'play movi': 6995, 'movi perform': 6066, 'go so': 4081, 'think make': 9022, 'here even': 4397, 'not still': 6484, 'resid': 7532, 'yep': 9963, 'football': 3781, 'replay': 7515, 'reno': 7504, 'kurt': 5163, 'russell': 7735, 'giggl': 4014, 'just go': 4983, 'go go': 4074, 'go along': 4064, 'movi man': 6047, 'movi give': 6023, 'bound': 1069, 'unbeliev': 9367, 'choic': 1968, 'failur': 3320, 'borrow': 1060, 'watching': 9641, 'horror be': 4520, 'look guy': 5405, 'germani': 3943, 'art movi': 450, 'educ': 2924, 'gusto': 4185, 'man get': 5590, 'brit': 1605, 'other': 6673, 'matthau': 5682, 'duo': 2863, 'tender': 8870, 'couple': 2307, 'ador': 146, 'other br': 6674, 'walter matthau': 9556, 'other br br': 6675, 'br br spoiler': 1292, 'brazil': 1573, 'confeder': 2208, 'assert': 491, 'environ': 3082, 'nevertheless': 6315, 'villag': 9503, 'threat': 9044, 'dri': 2828, 'mytholog': 6238, 'nude': 6546, 'interest movi': 4761, 'even movi': 3144, 'not terribl': 6490, 'pitch': 6959, 'much film': 6189, 'writ': 9915, 'inept': 4693, 'absurd': 19, 'bad': 598, 'insane': 4717, 'stalker': 8484, 'strip': 8641, 'seldom': 7984, 'minor': 5816, 'element film': 2954, 'bad br': 599, 'make br': 5537, 'be never': 752, 'never know': 6306, 'so hard': 8289, 'get enough': 3960, 'film be br': 3468, 'bad br br': 600, 'make br br': 5538, 'patricia': 6790, 'corn': 2276, 'quarter': 7278, 'qualiti film': 7275, 'man wife': 5600, 'road trip': 7636, 'quaint': 7272, 'conscience': 2223, 'mob': 5862, 'murki': 6205, 'atmosphere': 506, 'landscape': 5187, 'director john': 2662, 'john ford': 4910, 'nostalg': 6358, 'shoe': 8099, 'improvis': 4658, 'chew': 1953, 'gordon': 4106, 'boston': 1062, 'verg': 9445, 'document': 2753, 'obscur': 6559, 'interest part': 4764, 'much too': 6193, 'bit time': 964, 'start film': 8510, 'so end': 8276, 'mine': 5806, 'eccentr': 2908, 'person favorit': 6887, 'favorit mine': 3387, 'song not': 8379, 'not typic': 6498, 'movi again': 5960, 'as much': 465, 'not money': 6441, 'money be': 5890, 'film understand': 3671, 'review film': 7579, 'film friend': 3529, 'staff': 8476, 'star trek': 8504, 'too peopl': 9204, 'seri film': 8014, 'salt': 7760, 'pepper': 6851, 'worry': 9895, 'weapon': 9686, 'never heard': 6304, 'walk away': 9548, 'film lack': 3557, 'br add': 1090, 'minut br': 5818, 'br br add': 1124, 'minut br br': 5819, 'bug': 1645, 'iq': 4798, 'im': 4626, 'gon': 4098, 'recip': 7428, 'show never': 8133, 'alway see': 299, 'happen br': 4233, 'director just': 2663, 'actor get': 106, 'get time': 3997, 'happen br br': 4234, 'pathos': 6786, 'cutter': 2417, 'not becaus': 6373, 'experience br': 3264, 'movi charact': 5988, 'too even': 9189, 'experience br br': 3265, 'michell': 5771, 'rodriguez': 7663, 'mtv': 6184, 'film definit': 3498, 'see peopl': 7965, 'funer': 3868, 'jacket': 4832, 'screaming': 7891, 'frame': 3812, 'never before': 6290, 'come back': 2118, 'knack': 5124, 'differ movi': 2629, 'lou': 5444, 'martha': 5647, 'not wait': 6502, 'see again': 7938, 'christianity': 1987, 'inspiration': 4726, 'abc': 2, 'hope not': 4507, 'hilton': 4430, 'gore effect': 4108, 'tea': 8832, 'year not': 9950, 'sit watch': 8198, 'movi interest': 6035, 'fan film': 3340, 'as movi': 464, 'now see': 6538, 'give chance': 4035, 'sympath': 8774, 'never realli': 6310, 'be comedy': 691, 'bull': 1649, 'maid': 5529, 'constant': 2231, 'arnold': 438, 'incap': 4663, 'bros': 1618, 'matur': 5684, 'response': 7543, 'br need': 1438, 'life never': 5304, 'be view': 810, 'kalifornia': 5049, 'snatch': 8254, 'decor': 2513, 'legion': 5248, 'soon be': 8382, 'film part': 3604, 'attach': 509, 'frost': 3848, 'wright': 9913, 'office': 6579, 'danni': 2452, 'vampir': 9422, 'portray charact': 7084, 'box office': 1077, 'well movi': 9725, 'still find': 8548, 'excellent': 3232, 'sequel br': 8005, 'geisha': 3919, 'samurai': 7769, 'year movi': 9949, 'not far': 6404, 'not even close': 6395, 'sibl': 8148, 'rivalri': 7629, 'startl': 8514, 'done': 2777, 'get life': 3981, 'director writer': 2668, 'innuendo': 4715, 'hyster': 4595, 'crisis': 2366, 'sob': 8340, 'australia': 538, 'warning': 9586, 'personality': 6894, 'movi tv': 6111, 'br say': 1486, 'act as': 52, 'melissa': 5726, 'mountain': 5947, 'see as': 7941, 'alright': 256, 'charact almost': 1870, 'movi fail': 6010, 'film music': 3584, 'film say': 3629, 'revolv': 7590, 'neurot': 6284, 'who': 9784, 'whoopi': 9787, 'downey': 2796, 'achieve': 44, 'mel': 5725, 'accurate': 40, 'must': 6226, 'actor actress': 98, 'actress br': 124, 'whoopi goldberg': 9788, 'robert downey': 7645, 'downey jr': 2797, 'ahead time': 191, 'must see': 6227, 'see not': 7963, 'payoff': 6806, 'thru': 9054, 'versus': 9476, 'just put': 5011, 'have so much': 4324, 'movie actor': 6128, 'actor movi': 110, 'joy watch': 4936, 'bront': 1614, 'dalton': 2431, 'rochester': 7652, 'certainly': 1841, 'bulli': 1651, 'rochest': 7651, 'clark': 2025, 'ms': 6182, 'attribut': 525, 'temper': 8863, 'miracle': 5832, 'lovely': 5476, 'eyr': 3295, 'cast act': 1785, 'want watch': 9570, 'time never': 9106, 'have love': 4302, 'fact charact': 3308, 'here so': 4406, 'book so': 1045, 'jane eyr': 4850, 'free': 3828, 'signific': 8159, 'text': 8886, 'take seriously': 8804, 'end part': 3012, 'thing see': 9006, 'object': 6555, 'plot film': 7020, 'girl just': 4026, 'not reason': 6468, 'onli film': 6618, 'roth': 7708, 'kyle': 5165, 'dean': 2488, 'serial': 8016, 'usually': 9408, 'wannab': 9560, 'englund': 3042, 'betti': 934, 'master horror': 5662, 'tv not': 9340, 'not doe': 6388, 'there be': 8955, 'make stori': 5564, 'reason not': 7415, 'have also': 4272, 'director have': 2661, 'result be': 7558, 'get even': 3961, 'lewi': 5279, 'herself': 4416, 'madonna': 5519, 'francisco': 3818, 'tenant': 8867, 'tara': 8819, 'graham': 4123, 'contemporari': 2238, 'time ago': 9072, 'film way': 3681, 'none charact': 6347, 'way just': 9661, 'adapt novel': 132, 'springer': 8468, 'extent': 3283, 'reviewer': 7583, 'appropri': 418, 'cynic': 2421, 'dysfunct': 2891, 'upset': 9397, 'you': 9982, 'shell': 8080, 'br opinion': 1455, 'opinion movi': 6637, 'show just': 8129, 'man be': 5585, 'jerri springer': 4875, 'just excus': 4975, 'need see': 6267, 'br br opinion': 1245, 'birthday': 957, 'training': 9249, 'spray': 8464, 'neat': 6260, 'wink': 9813, 'green': 4141, 'intellectu': 4746, 'mak': 5533, 'awaken': 555, 'franco': 3819, 'influenc': 4697, 'he': 4340, 'corman': 2275, 'embrac': 2974, 'place just': 6970, 'film sinc': 3641, 'comment here': 2144, 'score film': 7884, 'understand whi': 9376, 'larri': 5194, 'sander': 7771, 'ham': 4216, 'just right': 5014, 'help think': 4379, 'get hold': 3971, 'preacher': 7117, 'poison': 7056, 'corrupt': 2286, 'seduc': 7935, 'adam': 129, 'film yet': 3688, 'br br bit': 1145, 'anyhow': 378, 'increas': 4676, 'illness': 4623, 'pal': 6722, 'nerv': 6281, 'charlott': 1925, 'burk': 1663, 'notch': 6513, 'splash': 8447, 'movi week': 6121, 'movi disappoint': 5996, 'almost complet': 240, 'picture br': 6933, 'stori br': 8582, 'br ok': 1450, 'father br': 3379, 'want give': 9565, 'nightmar street': 6330, 'realli have': 7389, 'feel watch': 3415, 'know whi': 5145, 'anyth else': 392, 'still watch': 8564, 'watch not': 9622, 'something br': 8367, 'stori br br': 8583, 'br br ok': 1240, 'father br br': 3380, 'something br br': 8368, 'be comedi': 690, 'have veri': 4329, 'clone': 2057, 'paus': 6800, 'citizen': 2015, 'snake': 8252, 'fx': 3881, 'loss': 5426, 'distract': 2711, 'cast includ': 1795, 'however movi': 4560, 'watch someth': 9632, 'furnitur': 3873, 'pond': 7069, 'reid': 7469, 'script act': 7903, 'incorrect': 4675, 'christian': 1986, 'expert': 3267, 'professor': 7198, 'evid': 3215, 'evidence': 3216, 'herd': 4390, 'norm': 6352, 'laurenc': 5217, 'vanc': 9427, 'spout': 8463, 'reek': 7456, 'deck': 2510, 'br enjoy': 1356, 'be reason': 773, 'point just': 7050, 'easili have': 2903, 'have point': 4315, 'be consid': 693, 'peopl thing': 6842, 'br br enjoy': 1171, 'individual': 4688, 'miner': 5807, 'potential': 7100, 'test': 8882, 'blow': 1006, 'fenc': 3424, 'dern': 2571, 'tradition': 9240, 'man man': 5594, 'future br': 3878, 'then be': 8917, 'actor perform': 114, 'reason whi': 7419, 'just about': 4957, 'future br br': 3879, 'reviv': 7585, 'casablanca': 1775, 'cake': 1700, 'maggi': 5524, 'sara': 7779, 'screw': 7901, 'avail': 545, 'be life': 736, 'still have': 8552, 'back day': 580, 'ani movi': 348, 'michel': 5770, 'thi film': 8972, 'book read': 1044, 'find not': 3708, 'franchis': 3815, 'vehicl': 9437, 'pun': 7249, 'digest': 2635, 'adolesc': 144, 'discoveri': 2689, 'prejudice': 7123, 'salvag': 7761, 'sever time': 8037, 'unfortunately not': 9382, 'work movi': 9870, 'talent actor': 8812, 'moor': 5916, 'bye': 1688, 'wound': 9904, 'movi begin': 5976, 'fact br': 3307, 'not attempt': 6369, 'heart br': 4351, 'heart br br': 4352, 'quit as': 7290, 'not quit as': 6463, 'jackass': 4831, 'egg': 2937, 'nois': 6340, 'skull': 8211, 'br probabl': 1470, 'end so': 3018, 'then see': 8935, 'see now': 7964, 'cast be': 1788, 'even look': 3142, 'br br probabl': 1258, 'josh': 4930, 'infam': 4695, 'aftermath': 163, 'angelo': 335, 'arrest': 443, 'outcome': 6682, 'criminal': 2363, 'just case': 4968, 'remake': 7491, 'captur': 1740, 'masterson': 5668, 'day br': 2471, 'see scene': 7967, 'never just': 6305, 'rating br': 7352, 'day br br': 2472, 'br br guy': 1194, 'isol': 4811, 'day not': 2476, 'not wast': 6504, 'eye candi': 3293, 'th movi': 8892, 'thing mind': 8998, 'mind movi': 5801, 'too mani': 9199, 'charact as': 1871, 'scorpion': 7885, 'tail': 8790, 'giallo': 4009, 'bottl': 1065, 'territory': 8879, 'bruno': 1625, 'martino': 5650, 'maniac': 5618, 'appreciate': 416, 'addit': 136, 'movi place': 6068, 'film right': 3626, 'right br': 7613, 'right br br': 7614, 'dudley': 2854, 'cheek': 1939, 'have life': 4298, 'dure film': 2867, 'so plot': 8312, 'movi quit': 6074, 'get rate': 3989, 'even just': 3140, 'stori woman': 8608, 'movi girl': 6022, 'box offic': 1076, 'take time': 8805, 'time realli': 9114, 'pierc': 6944, 'brosnan': 1619, 'preach': 7116, 'pierc brosnan': 6945, 'probabl be': 7170, 'film love': 3567, 'br nevertheless': 1440, 'br br nevertheless': 1234, 'combat': 2114, 'movi movie': 6053, 'movie probabl': 6159, 'want see': 9569, 'champion': 1851, 'one film': 6611, 'stinker': 8570, 'boy girl': 1082, 'watch once': 9624, 'year boy': 9941, 'smile face': 8247, 'hallmark': 4213, 'earn': 2897, 'film mak': 3568, 'style br': 8666, 'wel': 9702, 'frighten': 3842, 'be then': 798, 'disappointing': 2679, 'jean': 4862, 'structure': 8645, 'br mr': 1435, 'br br mr': 1230, 'shout': 8113, 'secretary': 7931, 'lin': 5332, 'tasteless': 8826, 'down watch': 2795, 'week later': 9698, 'act plot': 69, 'contempt': 2239, 'look feel': 5401, 'film school': 3631, 'look be': 5397, 'veri way': 9467, 'cruel': 2383, 'desperation': 2587, 'madness': 5518, 'pity': 6962, 'day film': 2474, 'br side': 1497, 'firstly': 3722, 'aft': 162, 'charact realli': 1898, 'br sinc': 1498, 'even think': 3161, 'think just': 9021, 'just wast': 5039, 'br br sinc': 1285, 'bittersweet': 970, 'employ': 2987, 'explanation': 3270, 'cue': 2395, 'simplic': 8173, 'double': 2787, 'strain': 8625, 'tragedi': 9242, 'bollywood': 1024, 'br love': 1414, 'face br': 3301, 'be music': 751, 'br br love': 1217, 'face br br': 3302, 'downhil': 2799, 'whatsoev': 9759, 'miracl': 5831, 'movi turn': 6110, 'humor not': 4580, 'part be': 6753, 'onli hope': 6622, 'movi ever br': 6005, 'br not onli': 1446, 'jordan': 4927, 'believable': 896, 'convincing': 2262, 'devast': 2602, 'portion film': 7081, 'then stori': 8940, 'br back': 1109, 'br br back': 1138, 'book br br': 1040, 'finale': 3697, 'conquer': 2220, 'system': 8781, 'eyre': 3296, 'stevenson': 8536, 'measur': 5716, 'profit': 7200, 'porter': 7079, 'marriag': 5644, 'charli': 1924, 'hung': 4583, 'rewrit': 7593, 'crippl': 2364, 'reputation': 7523, 'cruis': 2386, 'sinist': 8189, 'insur': 4744, 'verdict': 9444, 'othello': 6672, 'film mani': 3574, 'jane eyre': 4851, 'well make': 9724, 'movi right': 6083, 'not realiz': 6465, 'comment not': 2147, 'br br bi': 1144, 'devoid': 2609, 'split': 8450, 'filler': 3447, 'lol': 5383, 'idea br': 4602, 'film audienc': 3464, 'charact never': 1893, 'hour long': 4543, 'idea br br': 4603, 'take care': 8794, 'seem have': 7981, 'shame film': 8060, 'movi hour': 6032, 'end watch': 3023, 'recently': 7427, 'novelist': 6523, 'see just': 7959, 'br disappoint': 1350, 'charact have': 1884, 'school student': 7868, 'play game': 6993, 'br comment': 1339, 'br ani': 1096, 'jame bond': 4843, 'br br see': 1279, 'film not have': 3594, 'br br disappoint': 1165, 'br br comment': 1155, 'collabor': 2097, 'psychopath': 7240, 'popul': 7075, 'hug': 4567, 'daddi': 2425, 'mon': 5885, 'roller': 7684, 'mcadam': 5696, 'skin': 8207, 'murphi': 6206, 'passabl': 6776, 'terrorist': 8881, 'movi review': 6082, 'guy guy': 4192, 'director br': 2658, 'see guy': 7955, 'save day': 7792, 'be action': 661, 'one get': 6612, 'director br br': 2659, 'goddess': 4087, 'thompson': 9038, 'eh': 2940, 'morn': 5928, 'whi so': 9776, 'so mani': 8302, 'se': 7918, 'let know': 5268, 'baseball': 638, 'do someth': 2747, 'act script': 72, 'harbor': 4243, 'spring': 8467, 'elimin': 2957, 'communism': 2154, 'ration': 7354, 'mustach': 6228, 'spread': 8465, 'germany': 3944, 'fellow': 3419, 'bread': 1574, 'map': 5624, 'clay': 2032, 'berlin': 918, 'year br': 9942, 'look so': 5413, 'stori man': 8595, 'movi tri': 6109, 'movi see': 6087, 'actress not': 126, 'want say': 9568, 'br enough': 1357, 'begin end': 874, 'movi success': 6097, 'part part': 6763, 'br watch movi': 1544, 'br br enough': 1172, 'overdone': 6699, 'strand': 8626, 'slut': 8241, 'sneak': 8255, 'car crash': 1743, 'mother daughter': 5939, 'film girl': 3532, 'kill br': 5099, 'act film': 62, 'bottom barrel': 1067, 'really realli': 7407, 'kill br br': 5100, 'br as far': 1104, 'kate': 5056, 'psychologist': 7239, 'bernard': 919, 'transcend': 9252, 'influence': 4698, 'attitude': 521, 'unfortun': 9380, 'opposite': 6644, 'conserv': 2225, 'glove': 4059, 'hokey': 4461, 'cain': 1698, 'killer br': 5106, 'end there': 3020, 'time director': 9084, 'now year': 6542, 'not follow': 6408, 'too becaus': 9184, 'film concern': 3491, 'not well': 6508, 'hold interest': 4463, 'killer br br': 5107, 'movie ever': 6138, 'end then': 3019, 'movi end': 6000, 'make mind': 5551, 'feel charact': 3406, 'cinematography': 2010, 'da': 2423, 'catherin': 1813, 'hugh': 4568, 'smoke': 8249, 'machine': 5509, 'overwhelm': 6702, 'care ani': 1747, 'ani charact': 345, 'honest say': 4490, 'even see': 3155, 'rather be': 7344, 'be back': 674, 'ki': 5087, 'sholay': 8100, 'mindless': 5804, 'climb': 2050, 'pistol': 6957, 'hindi': 4437, 'raj': 7312, 'brood': 1615, 'amitabh': 314, 'wrist': 9914, 'elev': 2956, 'word describ': 9853, 'even tri': 3164, 'movi heart': 6029, 'film fan': 3519, 'be origin': 759, 'role film': 7671, 'time screen': 9116, 'wrestler': 9911, 'rampag': 7318, 'wrestl': 9910, 'gentl': 3935, 'bounc': 1068, 'dvd br': 2881, 'fan not': 3343, 'dvd br br': 2882, 'guilti': 4176, 'not plot': 6459, 'br no': 1441, 'too late': 9196, 'joke not': 4921, 'rest br': 7545, 'br br no': 1235, 'dash': 2459, 'premier': 7124, 'volunt': 9528, 'give film': 4037, 'work way': 9878, 'edg seat': 2915, 'stori also': 8580, 'act just': 64, 'well look': 9723, 'well just': 9721, 'br thing movi': 1525, 'movi not be': 6060, 'movi veri well': 6115, 'columbo': 2110, 'patrick': 6791, 'beginning br': 879, 'br excel': 1363, 'beginning br br': 880, 'br br excel': 1177, 'revelation': 7573, 'too end': 9188, 'too well': 9213, 'tri too': 9290, 'not problem': 6461, 'br br much': 1231, 'itali': 4818, 'sunris': 8714, 'grandfather': 4128, 'persuad': 6898, 'sens': 7992, 'lace': 5172, 'lay': 5224, 'conceit': 2193, 'ala': 206, 'poet': 7042, 'sudden': 8694, 'exposit': 3277, 'say so': 7811, 'way there': 9677, 'br meanwhile': 1420, 'see be': 7942, 'there just': 8960, 'just veri': 5036, 'br br meanwhile': 1222, 'just start': 5024, 'end see': 3016, 'film class': 3487, 'pamela': 6728, 'laughabl': 5210, 'tv seri': 9341, 'there also': 8954, 'stori just': 8590, 'year girl': 9947, 'have problem': 4316, 'cave': 1821, 'consist': 2229, 'vacation': 9411, 'sweat': 8763, 'muppet': 6200, 'study': 8655, 'insist': 4722, 'eighti': 2941, 'edge': 2917, 'tri convinc': 9279, 'away br': 559, 'br peopl': 1462, 'tri get': 9283, 'too have': 9194, 'away br br': 560, 'year br br': 9943, 'br br peopl': 1250, 'steven': 8535, 'movi there': 6102, 'so world': 8336, 'foxx': 3811, 'instanc': 4729, 'jami foxx': 4847, 'film person': 3609, 'directing': 2651, 'stori time': 8603, 'piece': 6943, 'way see': 9672, 'belushi': 903, 'prom': 7206, 'hamilton': 4217, 'lifestyl': 5312, 'plot develop': 7016, 'kill movi': 5102, 'end also': 2992, 'film deal': 3496, 'laugh so': 5209, 'elvira': 2969, 'rambl': 7315, 'nowhere': 6544, 'acquaint': 48, 'colin': 2096, 'reliabl': 7483, 'everybodi': 3201, 'holland': 4467, 'charact not': 1894, 'so point': 8313, 'film despit': 3499, 'doe well': 2764, 'like have': 5323, 'time come': 9082, 'so there': 8327, 'littl girl': 5364, 'damsel': 2437, 'distress': 2712, 'flavor': 3737, 'franci': 3817, 'nod': 6338, 'warren': 9588, 'doc': 2751, 'pioneer': 6954, 'electron': 2951, 'less': 5258, 'id': 4599, 'toe': 9161, 'scientif': 7875, 'morbius': 5921, 'recycl': 7447, 'deliber': 2534, 'flood': 3755, 'realize': 7380, 'damsel distress': 2438, 'sex appeal': 8040, 'perhap be': 6872, 'br admit': 1091, 'still give': 8550, 'br br admit': 1125, 'multipl': 6197, 'leather': 5237, 'vignett': 9501, 'celebrity': 1827, 'suav': 8670, 'tini': 9144, 'demeanor': 2544, 'cameron': 1712, 'footage': 3779, 'be play': 765, 'veri job': 9458, 'notice': 6518, 'vari': 9429, 'breathtak': 1584, 'conneri': 2218, 'dustin': 2874, 'hector': 4363, 'hunter': 4587, 'dragon': 2810, 'run away': 7728, 'charact plot': 1896, 'becaus look': 846, 'still get': 8549, 'movi believ': 5977, 'find br': 3703, 'so whi': 8334, 'well plot': 9730, 'world be': 9882, 'be somewhat': 790, 'find br br': 3704, 'br movi just': 1432, 'asia': 476, 'say show': 7810, 'tall': 8814, 'culmin': 2396, 'comprehend': 2187, 'anyth br': 390, 'movi like': 6041, 'much way': 6194, 'anyth br br': 391, 'br br sure': 1300, 'fluff': 3761, 'ticket': 9063, 'interest plot': 4765, 'boll': 1023, 'criticism': 2372, 'assur': 500, 'proof': 7212, 'controversi': 2253, 'numer': 6551, 'filth': 3696, 'trend': 9276, 'hostel': 4535, 'knew': 5126, 'bag': 604, 'cruelti': 2385, 'electr': 2950, 'spree': 8466, 'senseless': 7995, 'yell': 9962, 'just thing': 5028, 'go happen': 4075, 'death row': 2493, 'peopl br': 6825, 'complet lack': 2177, 'movi go': 6024, 'cast crew': 1791, 'just fun': 4980, 'shower': 8145, 'hustler': 4591, 'as long': 463, 'get get': 3964, 'just tri': 5032, 'debra': 2497, 'winger': 9812, 'quaid': 7271, 'flick br': 3747, 'crap br': 2329, 'crap br br': 2330, 'reincarn': 7471, 'br whi': 1547, 'br conclusion': 1340, 'br br whi': 1324, 'br br conclusion': 1156, 'thrown': 9053, 'measure': 5717, 'film movie': 3582, 'rare': 7334, 'shooter': 8102, 'liberti': 5284, 'wait be': 9542, 'voic act': 9523, 'be apart': 670, 'get not': 3987, 'waste': 9600, 'criterion': 2369, 'quirk': 7287, 'br expect': 1364, 'expect br': 3254, 'br second': 1490, 'still br': 8543, 'expect br br': 3255, 'br br second': 1278, 'still br br': 8544, 'peopl see': 6838, 'see horror': 7958, 'think watch': 9028, 'degre': 2529, 'bridget': 1594, 'show charact': 8123, 'charact show': 1899, 'feel not': 3411, 'assembl': 490, 'tragic': 9244, 'car chase': 1742, 'cup tea': 2403, 'mayb not': 5691, 'br cours': 1342, 'prank': 7112, 'realli need': 7395, 'induc': 4689, 'smooth': 8250, 'everywher': 3213, 'poster': 7095, 'not act': 6360, 'movi action': 5958, 'lot movi': 5437, 'movi guy': 6026, 'mostly': 5935, 'love time': 5473, 'be love': 740, 'actor well': 120, 'win award': 9806, 'stori not': 8598, 'love see': 5467, 'pastor': 6781, 'choir': 1970, 'brass': 1568, 'revolt': 7586, 'caricatur': 1760, 'musician': 6224, 'far not': 3360, 'country br': 2298, 'goe back': 4092, 'not spoil': 6482, 'country br br': 2299, 'radar': 7302, 'movi probabl': 6073, 'probabl never': 7172, 'axe': 569, 'still feel': 8546, 'just find': 4979, 'veri scene': 9463, 'well so': 9735, 'not understand': 6499, 'straightforward': 8624, 'princess': 7161, 'just doe': 4971, 'anime': 352, 'mediocre': 5721, 'orient': 6656, 'wizard': 9828, 'heavi metal': 4360, 'music so': 6222, 'not tell': 6489, 'movi take': 6098, 'backward': 596, 'film surpris': 3656, 'phil': 6912, 'matter fact': 5680, 'peac': 6808, 'legendari': 5247, 'shelf': 8079, 'one dimension': 6608, 'immedi': 4638, 'custom': 2414, 'review movi': 7581, 'thing movie': 9000, 'know peopl': 5144, 'peopl so': 6839, 'dvd player': 2883, 'move along': 5952, 'wast film': 9594, 'stoog': 8576, 'opportun see': 6640, 'thing thing': 9009, 'work br': 9863, 'work br br': 9864, 'doo': 2779, 'watch show': 9630, 'just end': 4972, 'whi movi': 9773, 'movi everyon': 6008, 'chuckl': 1998, 'get way': 4002, 'reject': 7473, 'dumber': 2859, 'magician': 5526, 'becaus charact': 841, 'no longer': 6335, 'sit there': 8197, 'oliver': 6594, 'vote br': 9533, 'titl brazil': 9150, 'vote br br': 9534, 'br titl brazil': 1529, 'dandi': 2448, 'meteor': 5757, 'encourag': 2991, 'music scene': 6220, 'year time': 9956, 'even interest': 3139, 'relax': 7477, 'stiller': 8567, 'bless': 990, 'ben stiller': 905, 'watch crap': 9607, 'watch day': 9608, 'like say': 5326, 'just rememb': 5013, 'look just': 5406, 'film place': 3611, 'hidden': 4421, 'spare': 8413, 'imagine': 4635, 'standout': 8491, 'police': 7063, 'br onc': 1452, 'almost never': 245, 'be say': 778, 'br br onc': 1242, 'bloke': 997, 'terri': 8874, 'crocodil': 2374, 'just say': 5016, 'expect be': 3253, 'ban': 615, 'shaw': 8072, 'end up': 3022, 'not whi': 6509, 'money film': 5893, 'still work': 8566, 'realli film': 7387, 'english': 3041, 'position': 7090, 'miniseri': 5813, 'delv': 2542, 'have help': 4293, 'also make': 273, 'someon not': 8359, 'burton': 1667, 'get do': 3957, 'cast not': 1798, 'sort way': 8398, 'work out': 9872, 'havoc': 4333, 'fish': 3723, 'griev': 4149, 'harder': 4246, 'mourn': 5948, 'tragedy': 9243, 'movi doe': 5998, 'monster movi': 5905, 'well charact': 9713, 'there movi': 8961, 'let say': 5271, 'so thing': 8328, 'year still': 9955, 'guy be': 4188, 'be place': 764, 'whi even': 9770, 'world movi': 9888, 'br again': 1092, 'be mayb': 744, 'br br start': 1294, 'place br br': 6968, 'heal': 4345, 'mute': 6229, 'grandfath': 4127, 'alot': 253, 'pace film': 6708, 'pot': 7097, 'plant': 6982, 'save grace': 7793, 'traumat': 9264, 'legaci': 5245, 'crisi': 2365, 'revisit': 7584, 'make interest': 5545, 'movi remind': 6081, 'commit suicide': 2152, 'anybody': 377, 'cinema film': 2006, 'film do': 3502, 'cast member': 1796, 'scene make': 7842, 'be know': 734, 'make mistak': 5552, 'you br': 9983, 'you br br': 9984, 'way back': 9648, 'movi name': 6056, 'movie end': 6136, 'watch origin': 9625, 'voter': 9535, 'minut time': 5826, 'oscar nomin': 6669, 'ancient': 325, 'immort': 4641, 'liner': 5343, 'showcas': 8143, 'puzzl': 7269, 'beauti woman': 830, 'end movie': 3010, 'film becom': 3471, 'perri': 6882, 'randi': 7320, 'film number': 3597, 'time tv': 9127, 'end show': 3017, 'way also': 9647, 'way show': 9673, 'see charact': 7946, 'corni': 2278, 'carey': 1757, 'waitress': 9545, 'mildr': 5788, 'poverti': 7103, 'flirt': 3752, 'shelter': 8082, 'broke': 1611, 'dee': 2515, 'salli': 7758, 'time work': 9133, 'life back': 5292, 'pass time': 6775, 'take back': 8793, 'br later': 1405, 'also love': 272, 'choice': 1969, 'calib': 1701, 'ballet': 613, 'comedi be': 2126, 'br soundtrack': 1504, 'br br soundtrack': 1290, 'wonderful': 9845, 'entir movi': 3078, 'like be': 5321, 'sexuality': 8045, 'way charact': 9652, 'berkeley': 917, 'prophet': 7219, 'time also': 9074, 'coach': 2076, 'jack nicholson': 4830, 'be movi ever': 748, 'elizabeth': 2959, 'drake': 2812, 'mental': 5738, 'asylum': 502, 'vault': 9433, 'antholog': 366, 'keeper': 5073, 'poker': 7059, 'santa claus': 7777, 'season show': 7924, 'charact here': 1885, 'cast br': 1789, 'cast br br': 1790, 'coma': 2112, 'bondag': 1028, 'plot element': 7018, 'movie watch': 6172, 'bradford': 1561, 'banter': 619, 'interfer': 4774, 'go just': 4076, 'effect br': 2929, 'line br': 5337, 'effect br br': 2930, 'line br br': 5338, 'asset': 492, 'effect so': 2933, 'love hate': 5457, 'work so': 9873, 'well stori': 9736, 'act role': 70, 'work so well': 9874, 'br tv': 1533, 'br br tv': 1313, 'whip': 9782, 'download': 2801, 'memoir': 5732, 'miscast': 5836, 'curiosity': 2405, 'life film': 5298, 'end even': 3002, 'recommend movi': 7439, 'einstein': 2942, 'shore': 8106, 'br instead': 1396, 'br course': 1343, 'br br instead': 1202, 'sci': 7869, 'lanc': 5183, 'movi here': 6030, 'resolv': 7536, 'histrion': 4450, 'behind': 884, 'fanat': 3346, 'curti': 2410, 'tide': 9064, 'concoct': 2202, 'repress': 7520, 'detective': 2599, 'luci': 5485, 'mae': 5520, 'qualifi': 7273, 'terrif': 8876, 'crisp': 2367, 'horror thriller': 4529, 'corny': 2279, 'imageri': 4629, 'korda': 5150, 'ralph': 7313, 'richardson': 7601, 'massey': 5659, 'gas': 3911, 'fuel': 3852, 'plagu': 6974, 'glenn': 4053, 'film differ': 3500, 'place film': 6969, 'silver screen': 8166, 'raymond massey': 7359, 'war not': 9578, 'well thing': 9738, 'time still': 9120, 'scienc fiction': 7872, 'sentence': 7999, 'stay away': 8521, 'mani movi': 5612, 'director produc': 2666, 'br movi be': 1430, 'scarface': 7819, 'castro': 1805, 'opportunity': 6641, 'fifti': 3437, 'lopez': 5419, 'cuban': 2393, 'wing': 9811, 'beautifully': 832, 'engross': 3043, 'pfeiffer': 6906, 'murray': 6208, 'omar': 6598, 'peckinpah': 6814, 'al pacino': 205, 'man name': 5596, 'get there': 3995, 'well role': 9731, 'rather film': 7347, 'be end': 703, 'whatsoever': 9760, 'peer': 6817, 'genet': 3928, 'disappear': 2677, 'busey': 1670, 'science': 7874, 'period time': 6879, 'onli thing': 6627, 'thing life': 8994, 'action film': 87, 'make lot': 5548, 'spin': 8440, 'movie charact': 6134, 'film making': 3571, 'film know': 3556, 'dinosaur': 2646, 'lab': 5167, 'blob': 993, 'meredith': 5744, 'plot hole': 7021, 'here thing': 4408, 'guy so': 4195, 'far away': 3352, 'movie thing': 6168, 'br guess': 1384, 'see becaus': 7943, 'br br guess': 1193, 'packag': 6713, 'barbra': 624, 'feminist': 3423, 'descent': 2573, 'bud': 1634, 'esther': 3109, 'poignant': 7044, 'dynam': 2890, 'resent': 7530, 'kristofferson': 5155, 'incorpor': 4674, 'rock star': 7657, 'break br': 1576, 'give break': 4033, 'close up': 2060, 'break br br': 1577, 'then thing': 8942, 'invest': 4791, 'mathieu': 5675, 'signal': 8158, 'soon br': 8383, 'line be': 5336, 'soon br br': 8384, 'deriv': 2570, 'ranger': 7326, 'thing happen': 8991, 'version not': 9475, 'power ranger': 7109, 'france': 3814, 'recov': 7444, 'wwi': 9928, 'smug': 8251, 'massacre': 5658, 'rumor': 7725, 'life as': 5291, 'br life': 1408, 'then year': 8947, 'together br': 9164, 'have heart': 4292, 'br br life': 1211, 'domin': 2771, 'one lin': 6614, 'automat': 544, 'blunt': 1008, 'arquett': 440, 'inabl': 4661, 'misguid': 5844, 'campus': 1717, 'kid br': 5091, 'be actor': 662, 'not tri': 6497, 'be believ': 677, 'watch scene': 9628, 'proud': 7228, 'actor ever': 104, 'list goe': 5351, 'lump': 5495, 'clint': 2051, 'leon': 5255, 'prospect': 7222, 'wild': 9799, 'disord': 2702, 'buddy': 1636, 'justic': 5044, 'dust': 2873, 'mice': 5767, 'not one': 6452, 'perform ever': 6863, 'mormon': 5927, 'spectacl': 8421, 'denis': 2551, 'almost scene': 246, 'movi differ': 5994, 'creep': 2355, 'emma': 2977, 'ellen': 2960, 'basic': 642, 'tri kill': 9286, 'way movie': 9666, 'jesus': 4883, 'film shot': 3638, 'give br': 4031, 'give br br': 4032, 'show watch': 8141, 'down earth': 2794, 'wine': 9810, 'br theme': 1520, 'redempt': 7450, 'simple': 8170, 'compassion': 2165, 'love be': 5453, 'peopl br br': 6826, 'hello': 4372, 'buster': 1676, 'negat': 6270, 'far movi': 3359, 'movi as': 5967, 'movi night': 6058, 'rate be': 7337, 'hoot': 4502, 'way spend': 9675, 'order get': 6653, 'charact life': 1888, 'heir': 4366, 'subtle': 8683, 'evok': 3218, 'empathi': 2981, 'agree': 188, 'film story': 3650, 'result film': 7559, 'not necessarili': 6447, 'somebodi': 8352, 'authent': 540, 'movi hand': 6027, 'lot time': 5443, 'movi idea': 6033, 'idea movi': 4606, 'even movie': 3145, 'forum': 3804, 'viewpoint': 9500, 'retrospect': 7565, 'pierr': 6946, 'jeremi': 4872, 'divid': 2721, 'take life': 8797, 'be differ': 696, 'differ way': 2630, 'be moment': 746, 'be boy': 680, 'film view': 3677, 'together br br': 9165, 'loach': 5375, 'bachchan': 574, 'pc': 6807, 'look movie': 5409, 'just just': 4989, 'br rating': 1476, 'br br rating': 1264, 'plot movie': 7026, 'movi friend': 6018, 'time movie': 9105, 'movie still': 6165, 'pauli': 6799, 'well think': 9739, 'film critic': 3493, 'span': 8412, 'parad': 6735, 'way stori': 9676, 'film comedi': 3489, 'requir': 7525, 'hart': 4260, 'redneck': 7453, 'just scene': 5017, 'movie too': 6170, 'kid film': 5093, 'actors': 122, 'sergeant': 8011, 'hollywood movi': 4473, 'just life': 4996, 'never forget': 6298, 'kumar': 5159, 'joker': 4922, 'akshay': 203, 'br song': 1501, 'not music': 6446, 'role model': 7675, 'werewolf': 9748, 'wang': 9559, 'north': 6355, 'veri movi': 9461, 'becaus be': 838, 'amusing': 320, 'love then': 5472, 'littl gem': 5363, 'ago br': 184, 'not fact': 6402, 'ago br br': 185, 'laugh be': 5207, 'still movie': 8558, 'crater': 2334, 'exploitation': 3273, 'film find': 3526, 'fathom': 3382, 'mister': 5850, 'aveng': 546, 'ant': 364, 'be almost': 665, 'script writer': 7915, 'look pretti': 5411, 'romero': 7693, 'dawn': 2467, 'film ever br': 3515, 'not wast time': 6505, 'harris': 4254, 'alleg': 227, 'female': 3422, 'onli part': 6625, 'not allow': 6363, 'much be': 6186, 'go movi': 4078, 'abuse': 23, 'get idea': 3972, 'idea movie': 4607, 'movi day': 5992, 'now time': 6541, 'home br br': 4479, 'graveyard': 4138, 'satan': 7785, 'engin': 3039, 'this': 9034, 'alley': 229, 'snuff': 8262, 'ghetto': 4005, 'assumpt': 499, 'wes': 9750, 'witness': 9824, 'this br': 9035, 'just let': 4995, 'video camera': 9489, 'this br br': 9036, 'film not just': 3595, 'crop': 2376, 'massiv': 5660, 'sheen': 8075, 'rex': 7594, 'mccarthi': 5697, 'veri strang': 9464, 'mind see': 5803, 'keep get': 5068, 'end bit': 2995, 'be rate': 770, 'let just say': 5267, 'boyer': 1084, 'aristocrat': 430, 'polici': 7065, 'garbo': 3904, 'have role': 4317, 'gather': 3914, 'biographi': 952, 'ranch': 7319, 'do get': 2737, 'dicken': 2619, 'test time': 8883, 'br version': 1538, 'film style': 3652, 'version br': 9471, 'almost year': 248, 'br br version': 1318, 'version br br': 9472, 'assort': 497, 'survive': 8752, 'overact': 6695, 'jill': 4890, 'tame': 8815, 'dislik': 2697, 'discount': 2687, 'time look': 9100, 'song film': 8378, 'aniston': 353, 'limp': 5331, 'stan': 8487, 'lisa': 5349, 'becaus movi': 847, 'aw film': 553, 'br premis': 1469, 'br br premis': 1257, 'mst3k': 6183, 'movie time': 6169, 'way have': 9659, 'wagner': 9540, 'angela': 334, 'purple': 7261, 'also role': 280, 'not surpris': 6487, 'audienc be': 527, 'wig': 9798, 'extra': 3285, 'status': 8519, 'ever not': 3189, 'time however': 9097, 'fun be': 3858, 'movi ever not': 6007, 'minist': 5814, 'pursuit': 7266, 'be review': 775, 'marshal': 5646, 'comb': 2113, 'characterist': 1914, 'much br': 6187, 'much br br': 6188, 'jungle': 4954, 'heap': 4347, 'film base': 3466, 'lead man': 5229, 'film man': 3572, 'cliff': 2044, 'parallel': 6738, 'enforc': 3037, 'civilization': 2017, 'be day': 695, 'man have': 5591, 'item': 4820, 'griffith': 4150, 'butch': 1678, 'knight': 5128, 'wait get': 9543, 'never get back': 6300, 'coupl time': 2305, 'onli have': 6621, 'br br say': 1274, 'favour': 3389, 'overall': 6696, 'br overall': 1457, 'br br overall': 1247, 'howl': 4563, 'boob': 1035, 'decade': 2501, 'truly': 9314, 'hit man': 4452, 'mob boss': 5863, 'get right': 3990, 'time travel': 9126, 'movi audienc': 5970, 'behav': 881, 'be coupl': 694, 'be not be': 755, 'thread': 9043, 'be think': 801, 'br br asid': 1135, 'stupidity': 8664, 'paycheck': 6805, 'film idea': 3545, 'middl east': 5776, 'end scene': 3015, 'background music': 595, 'aspect movi': 484, 'have money': 4304, 'movi recommend': 6080, 'anyon see': 386, 'br br anyway': 1132, 'believ film': 892, 'prostitut': 7223, 'technic': 8839, 'horror fan': 4523, 'movi fall': 6011, 'bureaucrat': 1661, 'plot make': 7024, 'kept': 5082, 'turturro': 9335, 'chess': 1950, 'watson': 9644, 'story movi': 8616, 'inject': 4708, 'spew': 8432, 'make work': 5573, 'anim film': 350, 'now get': 6531, 'get thing': 3996, 'ever see': 3191, 'fun movie': 3863, 'movie onli': 6157, 'chloe': 1967, 'shocker': 8098, 'somber': 8351, 'paxton': 6801, 'booth': 1051, 'scale': 7814, 'bill paxton': 948, 'even act': 3120, 'movi genr': 6020, 'funni film': 3870, 'zombi movi': 9993, 'film beauti': 3469, 'sixti': 8203, 'say not': 7809, 'kurt russel': 5164, 'so fact': 8279, 'boogeyman': 1036, 'vhs': 9481, 'camcord': 1706, 'be however': 727, 'septemb': 8003, 'not need': 6448, 'platform': 6985, 'drawn': 2819, 'just sit': 5021, 'onli get': 6620, 'movie give': 6143, 'thorough': 9039, 'theatric': 8905, 'panic': 6731, 'wrong br': 9923, 'film veri well': 3674, 'april': 420, 'thousand': 9042, 'st': 8472, 'commando': 2139, 'war br': 9573, 'order be': 6652, 'war br br': 9574, 'minim': 5810, 'wan': 9557, 'na': 6239, 'one even': 6609, 'wast money': 9595, 'meyer': 5760, 'abbott': 1, 'labour': 5171, 'burden': 1660, 'see see': 7968, 'expect see': 3259, 'thing too': 9010, 'be complet': 692, 'physic': 6926, 'serum': 8021, 'stella': 8527, 'dirt': 2671, 'urg': 9398, 'logan': 5381, 'shotgun': 8111, 'laboratori': 5170, 'kind film': 5110, 'phone call': 6919, 'too also': 9182, 'even enjoy': 3131, 'film someon': 3643, 'there watch': 8965, 'so reason': 8315, 'odyssey': 6572, 'manga': 5607, 'mani review': 5614, 'avoid film': 550, 'honour': 4497, 'samantha': 7764, 'mini seri': 5809, 'denouement': 2554, 'daisi': 2430, 'company': 2160, 'br score': 1488, 'br br score': 1276, 'slew': 8229, 'misfit': 5842, 'sammi': 7765, 'worship': 9897, 'harmless': 4252, 'tomb': 9172, 'kingdom': 5118, 'palac': 6723, 'egypt': 2939, 'taxi': 8829, 'agenda': 180, 'make matter': 5550, 'long ago': 5390, 'imagin be': 4633, 'lot scene': 5440, 'flame': 3732, 'bate': 648, 'origin idea': 6659, 'franki': 3822, 'illeg': 4622, 'dirti': 2672, 'complement': 2174, 'place time': 6972, 'now br': 6528, 'film titl': 3666, 'film sound': 3645, 'not really': 6467, 'film want': 3678, 'cast film': 1793, 'now br br': 6529, 'myself': 6233, 'ritter': 7627, 'ami': 313, 'john ritter': 4913, 'paramount': 6739, 'organ': 6655, 'subtlety': 8685, 'cortez': 2287, 'adequ': 139, 'divin': 2722, 'onli year': 6628, 'act especi': 58, 'briefly': 1597, 'homicid': 4485, 'lik': 5318, 'spotlight': 8462, 'deputi': 2566, 'file': 3445, 'general': 3925, 'array': 442, 'leo': 5254, 'casting': 1802, 'clueless': 2069, 'inmat': 4710, 'oz': 6706, 'fantasy': 3350, 'cream': 2341, 'andr': 330, 'br let': 1407, 'show air': 8118, 'br alway': 1095, 'mess br': 5749, 'turn br': 9329, 'get chanc': 3953, 'br br let': 1210, 'br br alway': 1128, 'mess br br': 5750, 'turn br br': 9330, 'screen br': 7893, 'screen br br': 7894, 'read review': 7370, 'then then': 8941, 'karen': 5053, 'befriend': 871, 'energy': 3036, 'be problem': 768, 'godzilla': 4090, 'romp': 7694, 'ugly': 9362, 'be fact': 710, 'just happen': 4986, 'cancel': 1719, 'leave': 5239, 'someday': 8353, 'make show': 5561, 'think have': 9020, 'so then': 8326, 'dreck': 2823, 'patron': 6793, 'end time': 3021, 'more': 5922, 'pound': 7102, 'holli': 4468, 'more br': 5923, 'more br br': 5924, 'cocki': 2081, 'afterward': 165, 'event film': 3170, 'there have': 8959, 'mood film': 5911, 'realli realli': 7397, 'pee': 6816, 'fart': 3369, 'cent': 1834, 'spiral': 8442, 'mesmer': 5747, 'trite': 9305, 'bus': 1668, 'movi definit': 5993, 'hadley': 4203, 'oil': 6587, 'enter': 3066, 'countrysid': 2300, 'drinking': 2833, 'conniv': 2219, 'restrain': 7554, 'suspicion': 8758, 'ov': 6692, 'support actress': 8730, 'voice ov': 9525, 'chef': 1944, 'mario': 5636, 'usa': 9399, 'brown': 1622, 'grin': 4152, 'work togeth': 9876, 'ani br': 343, 'just do': 4970, 'ultim': 9364, 'mexico': 5759, 'way look': 9663, 'peopl world': 6847, 'alway watch': 301, 'sound effect': 8402, 'saturday': 7789, 'monday': 5887, 'earl': 2893, 'humanity': 4573, 'repli': 7516, 'novelti': 6524, 'scifi': 7877, 'not part': 6455, 'part so': 6765, 'so guy': 8288, 'movi pretti': 6072, 'get movi': 3985, 'film appeal': 3459, 'vcr': 9434, 'textbook': 8887, 'lawn': 5220, 'wheeler': 9763, 'abroad': 15, 'duck': 2851, 'poorly': 7072, 'timing': 9140, 'mild': 5787, 'so year': 8337, 'actor time': 119, 'sober': 8341, 'snowman': 8261, 'so interest': 8293, 'interest movie': 4762, 'jack frost': 4828, 'original': 6664, 'crawford': 2336, 'bronson': 1613, 'story stori': 8618, 'sunshine': 8717, 'theme movi': 8912, 'actor realli': 116, 'actor just': 109, 'time scene': 9115, 'khan': 5086, 'feeling': 3416, 'show so': 8137, 'bit movi': 962, 'think be': 9015, 'br acting': 1087, 'actor job': 108, 'br br acting': 1121, 'overplay': 6701, 'expos': 3276, 'calm': 1705, 'aggress': 182, 'veri veri': 9466, 'bridge': 1593, 'wayne': 9683, 'brent': 1587, 'econom': 2910, 'jewel': 4888, 'retir': 7563, 'secretari': 7930, 'employe': 2988, 'friend be': 3835, 'give money': 4039, 'world so': 9890, 'tell br br': 8856, 'br thing film': 1524, 'end result': 3014, 'film call': 3481, 'wray': 9907, 'movi tell': 6099, 'happen time': 4237, 'not easi': 6389, 'echo': 2909, 'movi life': 6040, 'come age': 2117, 'pole': 7061, 'snippet': 8257, 'kidnap': 5097, 'merci': 5741, 'bobbi': 1015, 'movi call': 5985, 'br br moment': 1227, 'innocence': 4713, 'get involv': 3974, 'cliffhang': 2045, 'naturally': 6256, 'excess': 3235, 'film includ': 3546, 'lord ring': 5421, 'not origin': 6454, 'have plot': 4314, 'film goe': 3535, 'back stori': 588, 'too so': 9208, 'be sequel': 784, 'famili film': 3334, 'happen here': 4236, 'scene here': 7838, 'paradise': 6736, 'refuge': 7461, 'iran': 4799, 'israel': 4812, 'get becaus': 3949, 'end as': 2993, 'br br have': 1197, 'mclaglen': 5701, 'coburn': 2080, 'eventually': 3172, 'garfield': 3907, 'showdown': 8144, 'deliverance': 2539, 'scene involv': 7839, 'one ever': 6610, 'first film': 3718, 'shield': 8089, 'again time': 177, 'novel not': 6522, 'fitzgerald': 3728, 'magnet': 5527, 'life time': 5308, 'scene get': 7834, 'point not': 7053, 'have place': 4312, 'ferri': 3425, 'black': 973, 'campbel': 1715, 'crosbi': 2377, 'so find': 8283, 'sinc film': 8180, 'hate film': 4268, 'still hold': 8553, 'whatever': 9758, 'quick': 7284, 'get dvd': 3958, 'guarante': 4167, 'inhabit': 4704, 'canon': 1727, 'geek': 3918, 'topless': 9218, 'rent film': 7508, 'peopl time': 6844, 'do just': 2739, 'film simpli': 3640, 'simpli becaus': 8172, 'declin': 2512, 'centr': 1836, 'fuller': 3855, 'movi buff': 5984, 'driver': 2838, 'moreover': 5925, 'taxi driver': 8830, 'make believ': 5536, 'star movie': 8502, 'hayward': 4337, 'bradi': 1562, 'mi grade': 5763, 'grade br': 4120, 'br mi grade': 1424, 'mi grade br': 5764, 'grade br br': 4121, 'profil': 7199, 'not enjoy': 6392, 'have see': 4320, 'br everyon': 1361, 'br br everyon': 1176, 'sooner': 8386, 'be character': 689, 'good br': 4100, 'good br br': 4101, 'long br': 5391, 'long br br': 5392, 'better br br': 933, 'kim': 5108, 'reserv': 7531, 'earli film': 2895, 'not pay': 6456, 'babe': 570, 'film need': 3586, 'grendel': 4144, 'beowulf': 915, 'warrior': 9589, 'hulk': 4570, 'first off': 3721, 'flaw film': 3739, 'charact veri': 1906, 'stori make': 8594, 'film date': 3494, 'as well br': 470, 'charact too': 1905, 'have job': 4296, 'role have': 7672, 'luxuri': 5502, 'then get': 8925, 'captiv': 1739, 'plot plot': 7028, 'lad': 5175, 'bubbl': 1631, 'even stori': 3159, 'juic': 4946, 'foul': 3808, 'pimp': 6950, 'thing ever': 8987, 'money see': 5897, 'not find': 6407, 'br game': 1378, 'br br game': 1187, 'meg': 5724, 'playwright': 7001, 'auto': 543, 'intrus': 4788, 'greet': 4143, 'uncov': 9371, 'depart': 2558, 'alter': 291, 'tv film': 9337, 'bourn': 1071, 'choreography': 1977, 'damon': 2436, 'br tell': 1519, 'br br tell': 1303, 'handicap': 4224, 'thing alway': 8978, 'so ever': 8278, 'speci': 8418, 'stomach': 8574, 'oliv': 6593, 'shirley': 8094, 'now still': 6539, 'abomin': 7, 'weather': 9688, 'graphic': 4132, 'yeti': 9978, 'fiend': 3436, 'poem': 7041, 'piec film': 6939, 'history br': 4448, 'see get': 7953, 'history br br': 4449, 'oblig': 6556, 'cry': 2389, 'pre': 7115, 'http': 4564, 'www': 9930, 'production br': 7192, 'time frame': 9093, 'ed wood': 2912, 'also music': 276, 'child actor': 1960, 'realli well': 7402, 'movi much': 6054, 'be realli': 772, 'realli know': 7390, 'problem br': 7176, 'inherit': 4706, 'incest': 4665, 'hatr': 4269, 'thin': 8977, 'finney': 3714, 'stori way': 8606, 'movi actor': 5959, 'well play': 9729, 'spain': 8411, 'fascism': 3371, 'people': 6848, 'dignity': 2638, 'reason be': 7410, 'people br': 6849, 'garbage br': 3903, 'people br br': 6850, 'sue': 8696, 'one br': 6606, 'see also': 7939, 'campi': 1716, 'br not be': 1444, 'warmth': 9583, 'thing charact': 8983, 'thunderbird': 9059, 'penelop': 6820, 'writer have': 9920, 'just kid': 4991, 'shooting': 8103, 'alicia': 220, 'cbc': 1822, 'love so': 5469, 'movi far': 6013, 'hardship': 4248, 'peopl theater': 6841, 'entertain value': 3071, 'hamlet': 4218, 'fortune': 3803, 'midler': 5780, 'uncl': 9368, 'olivi': 6595, 'gibson': 4011, 'shakespeare': 8056, 'branagh': 1564, 'stiff': 8539, 'crystal': 2391, 'spend money': 8428, 'not bother': 6375, 'grass': 4134, 'drone': 2839, 'husband wife': 4590, 'have feel': 4287, 'house br': 4549, 'even go': 3137, 'bubba': 1630, 'benoit': 912, 'table': 8784, 'oppon': 6638, 'injur': 4709, 'counter': 2293, 'pin': 6951, 'retain': 7561, 'wwe': 9927, 'cena': 1831, 'brock': 1610, 'temple': 8865, 'frog': 3844, 'booker': 1046, 'choke': 1971, 'monitor': 5899, 'announc': 358, 'tripl': 9304, 'shove': 8114, 'toss': 9224, 'icon': 4598, 'balance': 610, 'taker': 8808, 'disabl': 2675, 'tag team': 8789, 'take turn': 8807, 'just way': 5041, 'attempt get': 514, 'know go': 5139, 'then turn': 8945, 'monument': 5909, 'mount': 5946, 'everyth movi': 3211, 'ace': 42, 'catchi': 1809, 'br shame': 1495, 'so get': 8285, 'br br shame': 1282, 'br girl': 1380, 'believ movi': 893, 'br br girl': 1189, 'so stori': 8324, 'slowly': 8239, 'werewolv': 9749, 'do movie': 2742, 'movi rather': 6076, 'movi start': 6093, 'episod not': 3086, 'so show': 8319, 'love show': 5468, 'realiti show': 7377, 'distort': 2710, 'inaccuraci': 4662, 'film cinema': 3486, 'br apart': 1101, 'br br apart': 1133, 'vivid': 9521, 'well too': 9742, 'airlin': 199, 'beckham': 857, 'incident': 4667, 'evolut': 3219, 'film tell': 3659, 'wast time watch': 9599, 'stori well': 8607, 'kathryn': 5058, 'surgeon': 8743, 'sniper': 8256, 'navi': 6258, 'politician': 7067, 'fan origin': 3344, 'programm': 7203, 'dame': 2433, 'inside': 4720, 'misery': 5840, 'br anoth': 1098, 'br br believ': 1143, 'say thing': 7812, 'pretti much': 7146, 'tongu': 9178, 'zack': 9988, 'derek': 2569, 'marin': 5635, 'carla': 1762, 'deaf': 2484, 'remaind': 7489, 'so give': 8286, 'fi': 3431, 'spielberg': 8436, 'sci fi': 7870, 'get feel': 3962, 'farmer': 3366, 'feast': 3395, 'book movi': 1042, 'sugar': 8700, 'retard': 7562, 'dure day': 2866, 'grim': 4151, 'danni glover': 2453, 'charact just': 1887, 'just part': 5007, 'vulner': 9539, 'whi peopl': 9775, 'ugli': 9361, 'br rememb': 1480, 'br br rememb': 1268, 'just plot': 5010, 'end have': 3006, 'crispin': 2368, 'landmark': 5185, 'miserably': 5838, 'masturb': 5670, 'interior': 4775, 'br half': 1386, 'kill guy': 5101, 'well get': 9718, 'michael jackson': 5769, 'show movi': 8132, 'br br half': 1195, 'tiger': 9067, 'someth else': 8364, 'exceed': 3228, 'act abil': 50, 'spoiler ahead': 8454, 'peter jackson': 6904, 'perpetu': 6881, 'movi first': 6017, 'pokemon': 7058, 'substanc': 8677, 'get work': 4004, 'make wonder': 5572, 'judge': 4941, 'seri be': 8013, 'show get': 8127, 'complet differ': 2176, 'anyth be': 389, 'grind': 4154, 'onli movi': 6624, 'peopl even': 6827, 'recommend anyone': 7435, 'outburst': 6680, 'then find': 8924, 'heart film': 4353, 'tri keep': 9285, 'biograph': 951, 'atroc': 507, 'end world': 3025, 'job film': 4900, 'scene end': 7830, 'preserv': 7135, 'order make': 6654, 'movi star': 6092, 'deer': 2520, 'not ever': 6396, 'ang': 332, 'for': 3782, 'rizzo': 7632, 'client': 2043, 'polanski': 7060, 'moodi': 5912, 'play man': 6994, 'film believ': 3474, 'br grade': 1383, 'br br grade': 1192, 'film like': 3561, 'hollywood br': 4471, 'charact interest': 1886, 'dyke': 2888, 'andrew': 331, 'cape': 1732, 'be case': 687, 'van dyke': 9426, 'film histori': 3541, 'movie get': 6142, 'tooth': 9215, 'factori': 3316, 'person be': 6884, 'year come': 9944, 'wonder whi': 9844, 'whi watch': 9778, 'veri import': 9457, 'morri': 5931, 'now movi': 6535, 'disguis': 2693, 'movi maker': 6046, 'trashi': 9262, 'razor': 7360, 'mani film': 5611, 'plot realli': 7030, 'do well': 2749, 'act veri': 77, 'drew': 2827, 'nanci': 6247, 'bunch peopl': 1656, 'win oscar': 9807, 'troop': 9309, 'film fail': 3517, 'love not': 5464, 'so long': 8298, 'mayb just': 5690, 'actor role': 117, 'multi': 6196, 'snoop': 8259, 'boundari': 1070, 'seinfeld': 7983, 'time plot': 9113, 'give credit': 4036, 'yawn': 9933, 'stori movi': 8596, 'edith': 2920, 'deathtrap': 2495, 'sleuth': 8228, 'motor': 5945, 'cannon': 1726, 'be rather': 771, 'film action': 3449, 'fest': 3426, 'halt': 4215, 'horse': 4530, 'repetit': 7513, 'han': 4221, 'be becaus': 676, 'movie do': 6135, 'by': 1687, 'do ani': 2729, 'silliness': 8163, 'ending': 3027, 'ending br': 3028, 'imagin anyon': 4632, 'ending br br': 3029, 'league': 5233, 'bart': 633, 'veri time': 9465, 'br secondly': 1491, 'sleaz': 8225, 'br case': 1333, 'rather have': 7348, 'br br case': 1149, 'christi': 1985, 'communic': 2153, 'therapist': 8952, 'sort film': 8395, 'moment br': 5877, 'rohmer': 7665, 'man woman': 5601, 'worthless': 9901, 'rate becaus': 7338, 'western': 9752, 'never see': 6311, 'habit': 4199, 'act talent': 75, 'time onli': 9109, 'look movi': 5408, 'lane': 5188, 'bit not': 963, 'still wonder': 8565, 'get close': 3955, 'script be': 7904, 'problem not': 7179, 'ethan': 3112, 'dip': 2647, 'christina': 1989, 'wheelchair': 9762, 'end get': 3005, 'then rest': 8933, 'veri funni': 9456, 'directori debut': 2670, 'well movie': 9726, 'artwork': 456, 'skirt': 8209, 'chen': 1947, 'pang': 6730, 'ruthless': 7740, 'ensur': 3065, 'bite dog': 968, 'however still': 4562, 'happen film': 4235, 'action br br': 86, 'br br course': 1158, 'instead be': 4733, 'awesom': 564, 'movi anyon': 5965, 'downsid': 2803, 'film often': 3598, 'armstrong': 436, 'degree': 2530, 'also like': 270, 'frankenstein': 3821, 'journal': 4932, 'moral': 5918, 'not take': 6488, 'film locat': 3564, 'made': 5515, 'empire': 2986, 'tourist': 9228, 'suffic': 8698, 'anyon ever': 383, 'suffic say': 8699, 'not everyone': 6398, 'flick br br': 3748, 'scene too': 7853, 'suspici': 8757, 'senat': 7990, 'ronald': 7696, 'divorce': 2725, 'indulg': 4690, 'sinc then': 8183, 'height': 4365, 'murphy': 6207, 'emili': 2976, 'exorcist': 3250, 'film whole': 3683, 'dungeon': 2861, 'maze': 5695, 'vamp': 9421, 'brat': 1569, 'torch': 9219, 'movie feel': 6140, 'see way': 7974, 'movi read': 6077, 'capra': 1736, 'br watch film': 1543, 'compass': 2164, 'play part': 6996, 'laugh film': 5208, 'be anyth': 669, 'rosco': 7703, 'madam': 5514, 'scene charact': 7829, 'take film': 8795, 'movi date': 5991, 'errol': 3096, 'flynn': 3763, 'gabl': 3882, 'man life': 5593, 'cassidi': 1783, 'fontain': 3774, 'astair': 501, 'stale': 8482, 'film period': 3608, 'number film': 6550, 'alongsid': 252, 'homosexuality': 4488, 'briefli': 1596, 'even still': 3158, 'dustin hoffman': 2875, 'still just': 8554, 'time becaus': 9078, 'justin': 5047, 'spacey': 8410, 'times': 9137, 'br work': 1551, 'kevin spacey': 5084, 'br surpris': 1516, 'times br': 9138, 'stori interest': 8589, 'br br work': 1327, 'times br br': 9139, 'just need': 5005, 'bent': 914, 'stamp': 8486, 'approv': 419, 'natali': 6252, 'cattl': 1816, 'thing never': 9001, 'clint eastwood': 2052, 'chris rock': 1982, 'peopl know': 6833, 'dazzl': 2480, 'russian': 7737, 'norton': 6356, 'differently': 2632, 'check br': 1935, 'never never': 6309, 'check br br': 1936, 'entirely': 3079, 'transplant': 9258, 'ritchi': 7626, 'soon find': 8385, 'film suffer': 3654, 'film instead': 3549, 'have fun': 4289, 'girl get': 4025, 'premis movi': 7127, 'go br br': 4070, 'mann': 5621, 'protest': 7226, 'growth': 4164, 'critiqu': 2373, 'fix': 3729, 'right film': 7615, 'favorit movi': 3388, 'movi story': 6096, 'enough make': 3061, 'liotta': 5347, 'movi now': 6061, 'empir': 2985, 'jabba': 4826, 'theodor': 8948, 'absorb': 18, 'sgt': 8048, 'supermarket': 8724, 'lunch': 5496, 'never anyth': 6288, 'night movi': 6327, 'austen': 536, 'bever': 936, 'liu': 5370, 'be night': 753, 'stuff br': 8658, 'stuff br br': 8659, 'der': 2567, 'too play': 9205, 'gretchen': 4145, 'mol': 5871, 'gretchen mol': 4146, 'hain': 4205, 'boon': 1048, 'slasher flick': 8220, 'br episod': 1358, 'truth be': 9318, 'br br episod': 1173, 'tobe': 9154, 'hooper': 4501, 'messi': 5754, 'tobe hooper': 9155, 'acting script': 83, 'tarzan': 8822, 'btw': 1629, 'not director': 6386, 'macabr': 5506, 'kolchak': 5148, 'analysis': 321, 'essay': 3104, 'profess': 7196, 'feinston': 3417, 'now not': 6537, 'movi person': 6067, 'take too': 8806, 'twilight': 9348, 'twilight zone': 9349, 'dire': 2648, 'ken': 5078, 'roles': 7680, 'feel just': 3408, 'roles br': 7681, 'roles br br': 7682, 'watch time': 9635, 'stifler': 8540, 'brien': 1598, 'act expect': 61, 'show actor': 8117, 'plane crash': 6979, 'make way': 5571, 'drivel': 2836, 'movi music': 6055, 'fog': 3766, 'be tell': 797, 'later film': 5203, 'not someon': 6480, 'not never': 6449, 'br word': 1550, 'execution': 3244, 'hepburn': 4385, 'fun not': 3864, 'sack': 7743, 'bathtub': 651, 'ye': 9934, 'year sinc': 9953, 'origin movi': 6660, 'experienc': 3262, 'call movi': 1704, 'not be movi': 6372, 'fulci': 3853, 'slasher film': 8219, 'be enjoy': 704, 'blood gore': 1001, 'rock music': 7655, 'incoher': 4671, 'sane': 7775, 'br product': 1472, 'not sinc': 6477, 'br br product': 1260, 'plot stori': 7032, 'bitch': 966, 'be care': 686, 'take movi': 8800, 'frontier': 3847, 'dose': 2785, 'distance': 2708, 'lang': 5189, 'braveheart': 1571, 'benjamin': 911, 'deeply': 2519, 'marathon': 5626, 'film night': 3588, 'movi as well': 5968, 'hometown': 4484, 'prompt': 7211, 'dure war': 2872, 'rico': 7604, 'user': 9406, 'declar': 2511, 'get kick': 3977, 'de': 2481, 'life love': 5302, 'th act': 8890, 'passeng': 6778, 'speechless': 8423, 'just turn': 5033, 'time effort': 9087, 'scandal': 7815, 'dirty': 2674, 'nun': 6552, 'fan be': 3339, 'cypher': 2422, 'get bit': 3950, 'punk': 7253, 'br part film': 1460, 'rack': 7301, 'sale': 7756, 'neil': 6274, 'rukh': 7723, 'benet': 910, 'melt': 5729, 'death br': 2492, 'overboard': 6697, 'make love': 5549, 'style film': 8668, 'not horror': 6420, 'role not': 7677, 'ancestor': 323, 'dear': 2490, 'also br br': 261, 'worse': 9896, 'br yeah': 1555, 'so actor': 8264, 'ever ever': 3179, 'right there': 7618, 'suppli': 8727, 'marqui': 5642, 'villa': 9502, 'film manag': 3573, 'sheridan': 8084, 'symbolism': 8773, 'fluid': 3762, 'emerg': 2975, 'stroke': 8643, 'breakthrough': 1580, 'carlo': 1763, 'curse': 2408, 'go get': 4073, 'again film': 171, 'so go': 8287, 'hawn': 4335, 'interest watch': 4770, 'reiser': 7472, 'paul reiser': 6797, 'br anyon': 1099, 'buy movie': 1685, 'restrict': 7556, 'safe': 7750, 'heartbreak': 4354, 'bagdad': 605, 'conrad': 2221, 'jaffar': 4838, 'technicolor': 8840, 'powell': 7106, 'stairway': 8480, 'thief bagdad': 8976, 'film moment': 3579, 'make use': 5569, 'guy br': 4189, 'charact rather': 1897, 'miranda': 5834, 'mankind': 5620, 'plus': 7038, 'cecil': 1825, 'demill': 2546, 'witti': 9825, 'sox': 8407, 'be film ever': 715, 'laurel': 5215, 'laurel hardi': 5216, 'excel job': 3231, 'wizard oz': 9829, 'br br anyon': 1131, 'arab': 421, 'muslim': 6225, 'mobil': 5864, 'synchron': 8778, 'movi play': 6069, 'impress film': 4654, 'film name': 3585, 'film not even': 3592, 'dana': 2441, 'crook': 2375, 'tendenc': 8869, 'wet': 9753, 'pretty': 7148, 'inconsist': 4673, 'torment': 9220, 'life way': 5311, 'person have': 6889, 'twitch': 9354, 'contend': 2240, 'stock footag': 8573, 'underground': 9372, 'sarandon': 7781, 'presum': 7141, 'anticip': 370, 'tunnel': 9323, 'incidentally': 4668, 'film debut': 3497, 'coup': 2302, 'lately': 5199, 'chavez': 1929, 'excitement': 3238, 'br br mani': 1220, 'bleak': 987, 'blast': 985, 'charact time': 1904, 'lanza': 5192, 'movi beauti': 5973, 'inspector': 4724, 'wrong br br': 9924, 'vampire': 9423, 'swim': 8767, 'scene have': 7837, 'br mayb': 1419, 'someon get': 8357, 'br br mayb': 1221, 'idea make': 4605, 'mill': 5793, 'computer': 2190, 'galaxi': 3890, 'colonel': 2105, 'parasit': 6741, 'amanda': 303, 'br almost': 1093, 'br br almost': 1126, 'taboo': 8785, 'mar': 5625, 'virtu': 9515, 'fatal': 3376, 'jacqu': 4837, 'college': 2103, 'mason': 5654, 'minnelli': 5815, 'zu': 9999, 'be ani': 667, 'film as well': 3462, 'so so so': 8321, 'paragraph': 6737, 'vagu': 9413, 'thick': 8974, 'dealer': 2486, 'plot devic': 7017, 'crime scene': 2361, 'script direction': 7907, 'not buy': 6378, 'wendigo': 9747, 'away film': 561, 'standpoint': 8492, 'low': 5478, 'stanc': 8488, 'again movi': 174, 'low budget': 5479, 'littl way': 5369, 'adapt book': 131, 'bondage': 1029, 'rko': 7633, 'dom': 2770, 'so also': 8266, 'also stori': 285, 'style br br': 8667, 'tool': 9214, 'here too': 4409, 'pen': 6819, 'john carpent': 4908, 'well well': 9745, 'victoria': 9487, 'patriot': 6792, 'be star': 792, 'mitchell': 5856, 'furi': 3872, 'mitchel': 5855, 'passag': 6777, 'alba': 209, 'surfer': 8742, 'film dvd': 3506, 'rest world': 7550, 'life get': 5299, 'diamond': 2614, 'anticipation': 371, 'get up': 4000, 'gunga': 4183, 'din': 2643, 'gunga din': 4184, 'br br surpris': 1301, 'movi understand': 6112, 'thing way': 9012, 'recognis': 7430, 'codi': 2084, 'scene see': 7848, 'chanc be': 1855, 'movi alway': 5963, 'viewing': 9499, 'imprison': 4656, 'decapit': 2502, 'instruct': 4740, 'movi horror': 6031, 'way too long': 9680, 'seagal': 7920, 'well let': 9722, 'chamber': 1849, 'factory': 3317, 'townspeopl': 9231, 'craze': 2338, 'perpetr': 6880, 'thailand': 8893, 'castle': 1804, 'tack': 8786, 'titl film': 9151, 'then have': 8927, 'elvi': 2968, 'tak': 8791, 'br br anoth': 1130, 'mcdonald': 5700, 'cunningham': 2401, 'rob roy': 7638, 'bench': 906, 'gestur': 3945, 'renaiss': 7500, 'accomplish': 35, 'futurist': 3880, 'br happen': 1388, 'movi world': 6124, 'br wast': 1540, 'farm': 3365, 'yearn': 9958, 'stimul': 8568, 'blank': 984, 'haril': 4250, 'time then': 9122, 'then now': 8932, 'recognit': 7431, 'interest be': 4754, 'nativ': 6254, 'completely': 2180, 'hour movi': 4544, 'br hour': 1393, 'movi director': 5995, 'diaz': 2617, 'shaki': 8057, 'dispatch': 2703, 'enjoyment': 3052, 'hardcor': 4245, 'wherev': 9766, 'merciless': 5742, 'proclaim': 7182, 'have bit': 4276, 'man so': 5598, 'film dure': 3505, 'dan life': 2440, 'fay': 3392, 'posey': 7087, 'goldblum': 4095, 'henri fool': 4384, 'film origin': 3602, 'parker posey': 6747, 'jeff goldblum': 4866, 'victori': 9486, 'not come': 6382, 'ambigu': 309, 'blur': 1009, 'jake': 4841, 'herbert': 4389, 'monologu': 5902, 'jungl': 4953, 'heel': 4364, 'return home': 7567, 'check out': 1938, 'dogma': 2766, 'publish': 7242, 'lastly': 5196, 'tri figur': 9281, 'so movie': 8304, 'dwell': 2887, 'film theme': 3660, 'star role': 8503, 'reluct': 7487, 'offici': 6581, 'heroism': 4415, 'way never': 9667, 'vengeanc': 9440, 'rol': 7666, 'hobbit': 4459, 'exposur': 3278, 'yet be': 9968, 'not laugh': 6427, 'just wait': 5037, 'sorrow': 8392, 'br yes': 1557, 'br dialogu': 1347, 'br br dialogu': 1162, 'literatur': 5357, 'masterpiece br': 5666, 'love love': 5461, 'masterpiece br br': 5667, 'mole': 5873, 'character not': 1912, 'br not say': 1447, 'operation': 6635, 'waterfront': 9643, 'eye br': 3291, 'eye br br': 3292, 'hunger': 4584, 'endeavor': 3026, 'conan': 2192, 'cycl': 2419, 'get copi': 3956, 'movi fun': 6019, 'as well film': 471, 'go find': 4072, 'fun movi': 3862, 'let get': 5264, 'set design': 8028, 'breakfast': 1579, 'biker': 944, 'rave': 7356, 'kinski': 5119, 'watch watch': 9637, 'music video': 6223, 'br comedi': 1338, 'mani scene': 5615, 'br br comedi': 1154, 'gruesom': 4166, 'be well': 814, 'robertson': 7646, 'film set': 3635, 'money movi': 5895, 'not imagin': 6422, 'weav': 9689, 'cloak': 2054, 'expression': 3280, 'goat': 4085, 'robber': 7639, 'ghost story': 4008, 'claim have': 2020, 'middl night': 5777, 'be father': 713, 'jew': 4887, 'older': 6592, 'disgrac': 2692, 'franchise': 3816, 'colman': 2104, 'firm': 3716, 'have oscar': 4310, 'see face': 7951, 'play br': 6989, 'play br br': 6990, 'gundam': 4181, 'clooney': 2058, 'movie scene': 6162, 'antwon': 375, 'hmmm': 4457, 'thing so': 9007, 'corridor': 2285, 'nightmare': 6331, 'chainsaw': 1845, 'fabl': 3297, 'slave': 8224, 'marti': 5648, 'time man': 9102, 'kid br br': 5092, 'make statement': 5563, 'name film': 6245, 'becaus just': 845, 'timon': 9141, 'pumbaa': 7247, 'movie way': 6173, 'lola': 5384, 'ridden': 7605, 'delici': 2535, 'drip': 2834, 'basebal': 637, 'biolog': 953, 'elliott': 2962, 'cush': 2413, 'wax': 9646, 'betrayal': 928, 'becaus act': 837, 'star cast': 8499, 'actor so': 118, 'there even': 8958, 'ingeni': 4702, 'minimum': 5811, 'telling': 8862, 'look see': 5412, 'before br': 868, 'before br br': 869, 'surf': 8739, 'maker film': 5576, 'alway make': 298, 'loneliness': 5388, 'just then': 5026, 'wardrob': 9580, 'cocktail': 2082, 'shameless': 8061, 'end feel': 3003, 'punish': 7251, 'charact ever': 1881, 'keep eye': 5066, 'be away': 673, 'collector': 2101, 'atroci': 508, 'also director': 262, 'tell tale': 8861, 'point movie': 7052, 'cracker': 2325, 'movie see': 6163, 'jesus christ': 4884, 'be wast': 811, 'film befor': 3472, 'say have': 7804, 'schlock': 7863, 'corbett': 2273, 'crown': 2381, 'even point': 3150, 'life have': 5300, 'er': 3093, 'zoo': 9996, 'gripe': 4156, 'eternity': 3111, 'worst': 9898, 'like movi': 5324, 'so realli': 8314, 'fritz': 3843, 'biko': 946, 'crow': 2379, 'music just': 6216, 'lawrenc': 5221, 'scene even': 7831, 'think movie': 9024, 'treasure': 9270, 'film video': 3676, 'origin version': 6663, 'altman': 293, 'movi kid': 6037, 'want do': 9563, 'br br beauti': 1140, 'ideolog': 4613, 'boy name': 1083, 'joseph smith': 4929, 'belt': 902, 'sarah': 7780, 'kill peopl': 5103, 'too thing': 9209, 'year daughter': 9945, 'use be': 9401, 'watch it br': 9617, 'adjust': 140, 'misfir': 5841, 'inner': 4711, 'imperson': 4645, 'juliett': 4950, 'cape fear': 1733, 'disney film': 2700, 'nephew': 6279, 'jaw drop': 4858, 'teeth': 8849, 'almost movi': 244, 'base stori': 636, 'have ani': 4273, 'product design': 7188, 'not exact': 6399, 'stori still': 8600, 'now movie': 6536, 'disco': 2686, 'movie realli': 6160, 'life too': 5309, 'stuck': 8649, 'ocean': 6569, 'family br': 3336, 'family br br': 3337, 'affleck': 158, 'endless': 3030, 'ever movie': 3188, 'life movi': 5303, 'be expect': 709, 'camera angl': 1709, 'even even': 3132, 'perform br': 6860, 'perform br br': 6861, 'agoni': 186, 'too get': 9193, 'narration': 6249, 'also movi': 275, 'stop watch': 8578, 'part plot': 6764, 'film wast': 3679, 'be go': 721, 'interest stori': 4767, 'noon': 6350, 'vice': 9483, 'rest movie': 7549, 'sinc movi': 8181, 'movie well': 6174, 'scene girl': 7835, 'insomnia': 4723, 'maria': 5633, 'pixar': 6963, 'angst': 340, 'end way': 3024, 'kent': 5081, 'too watch': 9212, 'watch tv': 9636, 'wilderness': 9801, 'virginia': 9514, 'never again': 6286, 'bliss': 992, 'keitel': 5074, 'br like': 1409, 'br br like': 1212, 'mack': 5511, 'br cinematographi': 1337, 'br br cinematographi': 1153, 'tucker': 9321, 'achievement': 45, 'jo': 4894, 'enough not': 3062, 'life just': 5301, 'go not': 4079, 'far go': 3358, 'footbal': 3780, 'godfath': 4088, 'person br': 6885, 'person br br': 6886, 'pickford': 6930, 'academi award': 26, 'mindset': 5805, 'ani br br': 344, 'tokyo': 9167, 'drug dealer': 2844, 'not everyon': 6397, 'let be': 5262, 'aris': 429, 'midget': 5779, 'also so': 283, 'br littl': 1411, 'br br littl': 1214, 'whoever': 9785, 'ultimatum': 9366, 'candl': 1723, 'however end': 4558, 'wrench': 9909, 'teenag girl': 8847, 'story film': 8614, 'br hollywood': 1391, 'wider': 9793, 'instructor': 4741, 'reduc': 7454, 'streep': 8633, 'patriarch': 6789, 'compromis': 2188, 'jigsaw': 4889, 'samuel': 7768, 'cher': 1948, 'expect film': 3256, 'trier': 9297, 'aweigh': 563, 'iturbi': 4824, 'athlet': 503, 'jerry': 4876, 'gene kelli': 3923, 'necessari': 6262, 'wonder job': 9840, 'actor part': 113, 'goodman': 4102, 'auteur': 539, 'lif': 5288, 'guinea': 4177, 'guinea pig': 4178, 'grudg': 4165, 'surpris film': 8746, 'word film': 9854, 'think ever': 9018, 'show peopl': 8135, 'dorm': 2783, 'lawrence': 5222, 'profanity': 7195, 'veri end': 9451, 'be effect': 702, 'film anyon': 3458, 'elsewher': 2966, 'miik': 5785, 'drifter': 2830, 'steer': 8526, 'allianc': 231, 'madison': 5516, 'meadow': 5705, 'anti hero': 369, 'grinch': 4153, 'dodgi': 2757, 'twelv': 9345, 'jame cameron': 4844, 'just guy': 4985, 'br br wast': 1320, 'br wast time': 1541, 'librari': 5285, 'so wonder': 8335, 'not fun': 6410, 'fighting': 3442, 'shearer': 8073, 'casino': 1781, 'time dure': 9086, 'film shock': 3637, 'cassavet': 1782, 'rowland': 7715, 'look even': 5400, 'thaw': 8900, 'luckili': 5489, 'so part': 8310, 'christin': 1988, 'tomato': 9171, 'describ movi': 2575, 'one br br': 6607, 'stori love': 8593, 'too movi': 9200, 'so now': 8308, 'coin': 2089, 'prevail': 7149, 'hooker': 4500, 'aiello': 194, 'john cusack': 4909, 'abigail': 3, 'becaus too': 854, 'tri save': 9289, 'film mind': 3577, 'audienc film': 528, 'moment movie': 5879, 'onli make': 6623, 'tomei': 9173, 'br attempt': 1107, 'film pace': 3603, 'friend famili': 3836, 'run man': 7729, 'game show': 3895, 'dure movi': 2868, 'keep br': 5064, 'keep br br': 5065, 'think way': 9029, 'literature': 5358, 'tramp': 9251, 'wonder movie': 9843, 'mutil': 6230, 'creek': 2354, 'slasher movi': 8221, 'br richard': 1484, 'br br richard': 1272, 'sex violence': 8043, 'rough': 7709, 'pete': 6901, 'front camera': 3846, 'time life': 9099, 'sit back': 8196, 'friend not': 3838, 'movi instead': 6034, 'week ago': 9697, 'stage play': 8478, 'headach': 4344, 'day later': 2475, 'time end': 9088, 'leadership': 5231, 'niec': 6324, 'prejudic': 7122, 'clearly': 2035, 'genre br': 3933, 'genre br br': 3934, 'not funny': 6412, 'synopsis': 8780, 'not moment': 6440, 'be hollywood': 725, 'even time': 3162, 'just act': 4958, 'nolan': 6341, 'show still': 8138, 'reason br': 7411, 'girl friend': 4024, 'begin movie': 877, 'raider': 7307, 'oprah': 6645, 'time too': 9125, 'not stand': 6483, 'even then': 3160, 'have play': 4313, 'movie like': 6148, 'minion': 5812, 'curri': 2406, 'be buy': 684, 'believ peopl': 895, 'place be': 6966, 'action thriller': 94, 'be mani': 743, 'cast movi': 1797, 'submit': 8674, 'down br': 2792, 'down br br': 2793, 'just play': 5009, 'show veri': 8140, 'sequel not': 8006, 'humbl': 4574, 'deserv be': 2581, 'stori veri': 8605, 'carel': 1756, 'hous': 4547, 'oblivion': 6557, 'well use': 9743, 'save life': 7794, 'cat hat': 1807, 'gielgud': 4012, 'john gielgud': 4911, 'woman get': 9835, 'kind movie': 5113, 'flick not': 3749, 'either br': 2944, 'either br br': 2945, 'provoc': 7232, 'sunset': 8715, 'betti page': 935, 'pipe': 6955, 'sunshin': 8716, 'holocaust': 4475, 'diari': 2616, 'ranma': 7328, 'watch realli': 9627, 'end make': 3008, 'just know': 4993, 'lot money': 5436, 'nicely': 6321, 'work veri': 9877, 'botch': 1063, 'reason br br': 7412, 'rout': 7711, 'clunker': 2071, 'kenneth': 5080, 'thereof': 8969, 'academy': 27, 'someon be': 8356, 'stardust': 8507, 'clair dane': 2022, 'compil': 2171, 'then even': 8922, 'carniv': 1764, 'differ kind': 2628, 'else br br': 2965, 'hotel room': 4537, 'be disappoint': 698, 'expect movi': 3257, 'br br there': 1305, 'serb': 8010, 'hopkin': 4510, 'dure scene': 2870, 'film onc': 3599, 'back not': 587, 'charact even': 1880, 'friend mine': 3837, 'paula': 6798, 'then start': 8938, 'bakshi': 608, 'music movi': 6217, 'production br br': 7193, 'sabrina': 7742, 'consid be': 2227, 'visitor': 9520, 'zorro': 9998, 'veri entertain': 9453, 'jenna': 4868, 'jenna jameson': 4869, 'bastard': 646, 'conviction': 2260, 'dish': 2695, 'moonstruck': 5915, 'coke': 2092, 'give star': 4043, 'hannah': 4229, 'jess franco': 4879, 'br first off': 1375, 'soderbergh': 8345, 'impend': 4644, 'kill then': 5104, 'movi about': 5956, 'hostag': 4534, 'pia': 6927, 'scene as': 7824, 'macy': 5512, 'be sinc': 788, 'realli make': 7392, 'dolph': 2769, 'extend': 3282, 'role movi': 7676, 'neglect': 6271, 'baddi': 601, 'shortcom': 8108, 'attempt creat': 513, 'embark': 2972, 'hopper': 4511, 'keep watch': 5072, 'br br side': 1284, 'find watch': 3709, 'gladiat': 4046, 'italy': 4819, 'robbery': 7641, 'gaze': 3916, 'bsg': 1628, 'exactly': 3223, 'caprica': 1737, 'scoobi': 7878, 'denmark': 2552, 'be seriously': 785, 'dope': 2782, 'dahmer': 2428, 'indiana': 4684, 'pleasur see': 7005, 'then tri': 8944, 'anyth movi': 393, 'nemesis': 6277, 'postman': 7096, 'gino': 4019, 'giovanna': 4020, 'ossession': 6671, 'well now': 9728, 'monasteri': 5886, 'wendi': 9746, 'shah': 8052, 'condition': 2205, 'movi channel': 5987, 'whi doe': 9769, 'che': 1930, 'bolivia': 1022, 'del': 2531, 'quinn': 7286, 'viewer not': 9498, 'have go': 4290, 'here imdb': 4401, 'use word': 9405, 'yet time': 9977, 'impos': 4651, 'get interest': 3973, 'open door': 6632, 'review movie': 7582, 'abound': 9, 'kornbluth': 5152, 'mabel': 5505, 'pacing': 6710, 'herman': 4410, 'downfal': 2798, 'lommel': 5385, 'communist': 2155, 'dement': 2545, 'get lot': 3983, 'valentine': 9416, 'valentin': 9415, 'horror movi ever': 4527, 'work actor': 9857, 'br paul': 1461, 'br br paul': 1249, 'nick': 6323, 'seal': 7921, 'even find': 3134, 'back enjoy': 581, 'marcel': 5628, 'waqt': 9571, 'director actor': 2656, 'well scene': 9733, 'artemisia': 451, 'pulp fiction': 7246, 'shriek': 8146, 'be version': 809, 'film half': 3536, 'time veri': 9128, 'whi there': 9777, 'almost br': 238, 'almost br br': 239, 'neo': 6278, 'still veri': 8563, 'world cup': 9886, 'almost time': 247, 'farc': 3362, 'complic': 2182, 'movie go': 6144, 'well end': 9714, 'technique': 8842, 'scene ever': 7832, 'radiat': 7303, 'then still': 8939, 'harry': 4258, 'go end': 4071, 'europa': 3115, 'carradine': 1769, 'carradin': 1768, 'see have': 7957, 'blonde': 999, 'film buff': 3480, 'cast well': 1801, 'protocol': 7227, 'then show': 8936, 'not either': 6390, 'support player': 8733, 'tin': 9143, 'film happen': 3537, 'also end': 264, 'isabell': 4809, 'mpaa': 6179, 'chandler': 1858, 'port': 7078, 'film hope': 3543, 'stir': 8571, 'sho': 8096, 'gackt': 3884, 'moon child': 5914, 'bumbl': 1653, 'ghost stori': 4007, 'karl': 5054, 'vinni': 9508, 'so feel': 8281, 'cherish': 1949, 'bye bye': 1689, 'parson': 6751, 'not move': 6442, 'je': 4861, 'do movi': 2741, 'gypo': 4196, 'slap face': 8215, 'bfg': 937, 'shot film': 8110, 'becaus way': 856, 'get charact': 3954, 'just move': 5002, 'ho': 4458, 'everi charact': 3196, 'kriemhild': 5153, 'hagen': 4204, 'shake head': 8054, 'sandwich': 7774, 'comedy br br': 2133, 'output': 6687, 'capot': 1735, 'pizza': 6964, 'bacon': 597, 'hare': 4249, 'interplay': 4777, 'censorship': 1833, 'gamera': 3896, 'be school': 780, 'ruth': 7739, 'pedro': 6815, 'there so': 8963, 'anton': 372, 'battlestar': 655, 'galactica': 3889, 'battlestar galactica': 656, 'stori never': 8597, 'stori too': 8604, 'tiresom': 9147, 'mother br': 5938, 'sonni': 8380, 'ustinov': 9407, 'cartwright': 1774, 'highway': 4426, 'consum': 2234, 'harron': 4257, 'sammo': 7766, 'chest': 1951, 'man even': 5588, 'equipment': 3091, 'never go': 6301, 'just kill': 4992, 'stallon': 8485, 'also just': 269, 'exquisit': 3281, 'stori even': 8585, 'divis': 2723, 'sid': 8150, 'hk': 4455, 'not there': 6492, 'br film also': 1369, 'schneider': 7864, 'literari': 5356, 'aircraft': 198, 'name br': 6244, 'abu': 20, 'dirti harri': 2673, 'flea': 3741, 'puppi': 7255, 'movi mind': 6050, 'krueger': 5156, 'yourself': 9986, 'guevara': 4173, 'che part': 1931, 'alic': 218, 'cylon': 2420, 'iowa': 4797, 'anne': 356, 'felix': 3418, 'sissi': 8193, 'beetl': 863, 'gadget': 3885, 'purpl rain': 7260, 'govinda': 4116, 'care not': 1752, 'randolph': 7321, 'randolph scott': 7322, 'script even': 7908, 'dr seuss': 2806, 'anytim': 395, 'hartnett': 4263, 'sharon stone': 8068, 'olli': 6596, 'mj': 5861, 'feel time': 3414, 'keanu': 5061, 'malta': 5582, 'joe don': 4904, 'don baker': 2774, 'know anyth': 5131, 'ahmad': 192, 'edmund': 2923, 'beckinsal': 858, 'kate beckinsal': 5057, 'pasolini': 6773, 'jed': 4863, 'kazan': 5060, 'blais': 980, 'alice': 219, 'pinjar': 6952, 'depalma': 2557, 'palermo': 6725, 'hackenstein': 4201}

-------------------------

CountVectorizer
/usr/local/lib/python3.7/dist-packages/sklearn/utils/deprecation.py:87: FutureWarning: Function get_feature_names is deprecated; get_feature_names is deprecated in 1.0 and will be removed in 1.2. Please use get_feature_names_out instead.
  warnings.warn(msg, category=FutureWarning)
[[0 0 0 ... 0 0 0]
 [0 0 0 ... 0 0 0]
 [0 0 0 ... 0 0 0]
 ...
 [0 0 0 ... 0 0 0]
 [0 0 0 ... 0 0 0]
 [0 0 0 ... 0 0 0]]

-------------------------

TF-IDF
[6.25919665 7.72553372 7.07494615 ... 7.43785164 7.90785527 7.90785527]
10000

-------------------------

Predictions
[1 0 0 ... 0 0 0]


---- Classification report ----
              precision    recall  f1-score   support

     positif       0.58      0.97      0.73      1267
     negatif       0.89      0.29      0.44      1233

    accuracy                           0.63      2500
   macro avg       0.74      0.63      0.58      2500
weighted avg       0.74      0.63      0.58      2500

Discussion des résultats

Sans grande surprise les performances baissent lorsque l'on appriche la fonction pos_tag_filter en ne gardant uniquement que les mots associés aux tags acceptés, la phrase perd de son sens. De plus, la phrase n'est plus bien construire.

Fine-tuning d'un modèle Bert

Suivant le modèle du TP précédent, fine-tunez le modèle Bert le plus léger disponible sur les données d'IMDB et comparez avec les résultats obtenus précédemment. Encore une fois, si possible, réalisez cette étude pour des quantités de données différentes.

Check if the GPU is available

In [ ]:
import torch

if torch.cuda.is_available():       
    device = torch.device("cuda")
    print(f'There are {torch.cuda.device_count()} GPU(s) available.')
    print('Device name:', torch.cuda.get_device_name(0))

else:
    print('No GPU available, using the CPU instead.')
    device = torch.device("cpu")
There are 1 GPU(s) available.
Device name: Tesla T4

Installation the dependences

In [ ]:
from transformers import DistilBertTokenizerFast, DistilBertModel, DistilBertForSequenceClassification
from transformers import Trainer, TrainingArguments

import pprint
pp = pprint.PrettyPrinter(indent=4)

Encoding data with DistilBERT

  1. Le texte doit être tronqué s'il est supérieur à 256/512 tokens ou paddé s'il est inférieur à 256 ou 512 tokens (selon la taille du modèle). Les mots peuvent également devoir être séparés en sous-mots : Les modèles de type BERT utilisent des tokenizers différents, construits pour gérer un vocabulaire de taille fixe. Tout mot qui n'est pas dans le vocabulaire est divisé en sous-mots qui le sont. Le tokenizer de BERT est basé sur Wordpiece.

  2. BERT utilise des jetons spéciaux, qui seront ajoutés :

    • [CLS] - Jeton de début de chaque document.
    • [SEP] - Séparateur entre chaque phrase.
    • [PAD] - Remplissage à la fin du document autant de fois que nécessaire, jusqu'à 256/512 jetons.
    • ## - Indique le début d'un sous-mot, ou "morceau de mot".

Nous utiliserons le modèle DistilBERT pour gagner de la place (puisqu'il s'agit d'une version distillée du modèle BERT complet), et nous utiliserons la version sans casse. Nous devons faire attention à utiliser le tokenizer correspondant.

In [ ]:
tokenizer = DistilBertTokenizerFast.from_pretrained('distilbert-base-uncased')

Encoding training and testing data

In [ ]:
train_texts_input = tokenizer([sentence for sentence in train_texts_splt],
                         truncation=True,
                         padding='max_length', 
                         return_tensors="pt")

test_texts_input = tokenizer([sentence for sentence in val_texts],
                              truncation=True,
                              padding='max_length', 
                              return_tensors="pt")

Regardons le résultat de l'encodage du dataset d'entrainement

Pour ce nous allons prendre comme exemple la première phrase de notre dataset que l'on peut considéré comme un document

Résultat de l'encoding train_texts_input

In [ ]:
print("----- train_texts_input -----")

print("Original sentence")
print(train_texts_splt[0])

print("\n\nTokens")
pp.pprint(train_texts_input[0].tokens)

print("\n\nSpecial Tokens")
pp.pprint(train_texts_input[0].special_tokens_mask)

# The number of tokens is not the same anymore
print("\n\nText length")
pp.pprint(len(train_texts_splt[0]))

print("\n\nText tokenized length")
pp.pprint(len(train_texts_input[0].tokens))
----- train_texts_input -----
Original sentence
I bought this from Blockbuster for 99p. The guy behind the counter said the reason it was so cheap was because the disc was scratched to sh*t, but failed to mention that the reason it was so cheap was because the film was a p*ss poor effort that sucked harder than Paris Hilton in a hotel room home video. Talking of home videos, since when has it been fair game to release them as films - I mean to say, films used to employ actors and technicians and scriptwriters and so on - not any more - just gather your friends and lame-o ideas together for the weekend, lavish the production with an £8.00 budget, and get someone to fall down the stairs with a Casio keyboard (the soundtrack) - then slap it on the shelves, for some poor sap (me), to take home in lonely desperation. But here's the clincher - I fast forwarded through most of this, and tossed it to one side, ready for the hammers... until the next night, while watching a Darren Day horror 'Hellbreed' (£1.99 to take home and keep from a different Blockbuster). Now this film made 'Grim Weekend' look like The Exorcist, so I slapped Grim Weekend back on, to catch up on some of the moments listed on the wonderful IMDb boards, that viewers claimed were hilarious. Sure enough, once I had got over the misery, the pain, and the horror, of realising Grim Weekend was utter chod on toast, I could enjoy, savour, and downright get down to the funny stuff. And there's a lot of it. Check the boards. Then check the flick. Hell, it might even be worth it. AWWWWW CRAP!


Tokens
[   '[CLS]',
    'i',
    'bought',
    'this',
    'from',
    'blockbuster',
    'for',
    '99',
    '##p',
    '.',
    'the',
    'guy',
    'behind',
    'the',
    'counter',
    'said',
    'the',
    'reason',
    'it',
    'was',
    'so',
    'cheap',
    'was',
    'because',
    'the',
    'disc',
    'was',
    'scratched',
    'to',
    'sh',
    '*',
    't',
    ',',
    'but',
    'failed',
    'to',
    'mention',
    'that',
    'the',
    'reason',
    'it',
    'was',
    'so',
    'cheap',
    'was',
    'because',
    'the',
    'film',
    'was',
    'a',
    'p',
    '*',
    'ss',
    'poor',
    'effort',
    'that',
    'sucked',
    'harder',
    'than',
    'paris',
    'hilton',
    'in',
    'a',
    'hotel',
    'room',
    'home',
    'video',
    '.',
    'talking',
    'of',
    'home',
    'videos',
    ',',
    'since',
    'when',
    'has',
    'it',
    'been',
    'fair',
    'game',
    'to',
    'release',
    'them',
    'as',
    'films',
    '-',
    'i',
    'mean',
    'to',
    'say',
    ',',
    'films',
    'used',
    'to',
    'employ',
    'actors',
    'and',
    'technicians',
    'and',
    'script',
    '##writer',
    '##s',
    'and',
    'so',
    'on',
    '-',
    'not',
    'any',
    'more',
    '-',
    'just',
    'gather',
    'your',
    'friends',
    'and',
    'lame',
    '-',
    'o',
    'ideas',
    'together',
    'for',
    'the',
    'weekend',
    ',',
    'lavish',
    'the',
    'production',
    'with',
    'an',
    '£',
    '##8',
    '.',
    '00',
    'budget',
    ',',
    'and',
    'get',
    'someone',
    'to',
    'fall',
    'down',
    'the',
    'stairs',
    'with',
    'a',
    'cas',
    '##io',
    'keyboard',
    '(',
    'the',
    'soundtrack',
    ')',
    '-',
    'then',
    'slap',
    'it',
    'on',
    'the',
    'shelves',
    ',',
    'for',
    'some',
    'poor',
    'sap',
    '(',
    'me',
    ')',
    ',',
    'to',
    'take',
    'home',
    'in',
    'lonely',
    'desperation',
    '.',
    'but',
    'here',
    "'",
    's',
    'the',
    'clinch',
    '##er',
    '-',
    'i',
    'fast',
    'forward',
    '##ed',
    'through',
    'most',
    'of',
    'this',
    ',',
    'and',
    'tossed',
    'it',
    'to',
    'one',
    'side',
    ',',
    'ready',
    'for',
    'the',
    'hammer',
    '##s',
    '.',
    '.',
    '.',
    'until',
    'the',
    'next',
    'night',
    ',',
    'while',
    'watching',
    'a',
    'darren',
    'day',
    'horror',
    "'",
    'hell',
    '##bre',
    '##ed',
    "'",
    '(',
    '£1',
    '.',
    '99',
    'to',
    'take',
    'home',
    'and',
    'keep',
    'from',
    'a',
    'different',
    'blockbuster',
    ')',
    '.',
    'now',
    'this',
    'film',
    'made',
    "'",
    'grim',
    'weekend',
    "'",
    'look',
    'like',
    'the',
    'ex',
    '##or',
    '##cis',
    '##t',
    ',',
    'so',
    'i',
    'slapped',
    'grim',
    'weekend',
    'back',
    'on',
    ',',
    'to',
    'catch',
    'up',
    'on',
    'some',
    'of',
    'the',
    'moments',
    'listed',
    'on',
    'the',
    'wonderful',
    'im',
    '##db',
    'boards',
    ',',
    'that',
    'viewers',
    'claimed',
    'were',
    'hilarious',
    '.',
    'sure',
    'enough',
    ',',
    'once',
    'i',
    'had',
    'got',
    'over',
    'the',
    'misery',
    ',',
    'the',
    'pain',
    ',',
    'and',
    'the',
    'horror',
    ',',
    'of',
    'realising',
    'grim',
    'weekend',
    'was',
    'utter',
    'cho',
    '##d',
    'on',
    'toast',
    ',',
    'i',
    'could',
    'enjoy',
    ',',
    'sa',
    '##vo',
    '##ur',
    ',',
    'and',
    'down',
    '##right',
    'get',
    'down',
    'to',
    'the',
    'funny',
    'stuff',
    '.',
    'and',
    'there',
    "'",
    's',
    'a',
    'lot',
    'of',
    'it',
    '.',
    'check',
    'the',
    'boards',
    '.',
    'then',
    'check',
    'the',
    'flick',
    '.',
    'hell',
    ',',
    'it',
    'might',
    'even',
    'be',
    'worth',
    'it',
    '.',
    'aw',
    '##w',
    '##w',
    '##w',
    '##w',
    'crap',
    '!',
    '[SEP]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]']


Special Tokens
[   1,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1]


Text length
1522


Text tokenized length
512

Résultat de l'encoding de test_texts_input

In [ ]:
print("----- test_texts_input -----")

print("Original sentence")
print(val_texts[0])

print("\n\nTokens")
pp.pprint(test_texts_input[0].tokens)

print("\n\nSpecial Tokens")
pp.pprint(test_texts_input[0].special_tokens_mask)

# The number of tokens is not the same anymore
print("\n\nText length")
pp.pprint(len(val_texts[0]))

print("\n\nText tokenized length")
pp.pprint(len(test_texts_input[0].tokens))
----- test_texts_input -----
Original sentence
The Twilight Zone has achieved a certain mythology about it--much like Star Trek. That's because there are many devoted lovers of the show that no matter what think every episode was a winner. They are the ones who score each individual show a 10 and cannot objectively evaluate the show. Because of this, a while back I reviewed all the original Star Trek episodes (the good and the bad) because the overall ratings and reviews were just too positive. Now, it's time to do the same for The Twilight Zone.<br /><br />While I have scored many episodes 10, this one gets a 3 simply because it was bad. The writing was in fact embarrassingly bad. Two people from opposing sides in a great war are seen wandering about through the entire episode. After a while, it's apparent that they are the only two people left on Earth--as you learn in the really stupid and totally unconvincing conclusion. Usually the twist at the end makes the episode great--this one killed it!


Tokens
[   '[CLS]',
    'the',
    'twilight',
    'zone',
    'has',
    'achieved',
    'a',
    'certain',
    'mythology',
    'about',
    'it',
    '-',
    '-',
    'much',
    'like',
    'star',
    'trek',
    '.',
    'that',
    "'",
    's',
    'because',
    'there',
    'are',
    'many',
    'devoted',
    'lovers',
    'of',
    'the',
    'show',
    'that',
    'no',
    'matter',
    'what',
    'think',
    'every',
    'episode',
    'was',
    'a',
    'winner',
    '.',
    'they',
    'are',
    'the',
    'ones',
    'who',
    'score',
    'each',
    'individual',
    'show',
    'a',
    '10',
    'and',
    'cannot',
    'objective',
    '##ly',
    'evaluate',
    'the',
    'show',
    '.',
    'because',
    'of',
    'this',
    ',',
    'a',
    'while',
    'back',
    'i',
    'reviewed',
    'all',
    'the',
    'original',
    'star',
    'trek',
    'episodes',
    '(',
    'the',
    'good',
    'and',
    'the',
    'bad',
    ')',
    'because',
    'the',
    'overall',
    'ratings',
    'and',
    'reviews',
    'were',
    'just',
    'too',
    'positive',
    '.',
    'now',
    ',',
    'it',
    "'",
    's',
    'time',
    'to',
    'do',
    'the',
    'same',
    'for',
    'the',
    'twilight',
    'zone',
    '.',
    '<',
    'br',
    '/',
    '>',
    '<',
    'br',
    '/',
    '>',
    'while',
    'i',
    'have',
    'scored',
    'many',
    'episodes',
    '10',
    ',',
    'this',
    'one',
    'gets',
    'a',
    '3',
    'simply',
    'because',
    'it',
    'was',
    'bad',
    '.',
    'the',
    'writing',
    'was',
    'in',
    'fact',
    'embarrassing',
    '##ly',
    'bad',
    '.',
    'two',
    'people',
    'from',
    'opposing',
    'sides',
    'in',
    'a',
    'great',
    'war',
    'are',
    'seen',
    'wandering',
    'about',
    'through',
    'the',
    'entire',
    'episode',
    '.',
    'after',
    'a',
    'while',
    ',',
    'it',
    "'",
    's',
    'apparent',
    'that',
    'they',
    'are',
    'the',
    'only',
    'two',
    'people',
    'left',
    'on',
    'earth',
    '-',
    '-',
    'as',
    'you',
    'learn',
    'in',
    'the',
    'really',
    'stupid',
    'and',
    'totally',
    'un',
    '##con',
    '##vin',
    '##cing',
    'conclusion',
    '.',
    'usually',
    'the',
    'twist',
    'at',
    'the',
    'end',
    'makes',
    'the',
    'episode',
    'great',
    '-',
    '-',
    'this',
    'one',
    'killed',
    'it',
    '!',
    '[SEP]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]',
    '[PAD]']


Special Tokens
[   1,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1,
    1]


Text length
965


Text tokenized length
512

On peut remarquer que l'encodage du premier document (i.e premier texte) est composé à la fin d'une séquence du token [PAD]. Cela s'exeplique par le fait que la longueur de la séquence n'est pas assez grand pour tenir sur un séquence de dmiension 512. Ainsi la fin de l'encodage de la fin de la séquence est remplie par le token [PAD] pour respecter une séquence de 512

Création de la classe Torch

Nous devons créer une classe Torch personnalisée pour transformer les encodages en entrées du modèle, pour deux raisons principales :

  • Ajouter les étiquettes à l'objet d'encodage, puisque cela est nécessaire pour affiner un modèle de classification.
  • Fournir une interface pour le modèle pour faire des mini-batchs à partir des encodages.
In [ ]:
import torch

class FineTuningDataset(torch.utils.data.Dataset):
    def __init__(self, encodings, labels):
        self.encodings = encodings
        self.labels = labels

    def __getitem__(self, idx):
        item = {key: torch.tensor(val[idx]) for key, val in self.encodings.items()}
        item['labels'] = torch.tensor(self.labels[idx])
        return item

    def __len__(self):
        return len(self.labels)
In [ ]:
train_texts_dataset = FineTuningDataset(train_texts_input, train_labels_splt)
test_texts_dataset = FineTuningDataset(test_texts_input, val_labels)

Load the model and pass to CUDA

In [ ]:
bert_clf_model = DistilBertForSequenceClassification.from_pretrained('distilbert-base-uncased', num_labels= max(train_labels_splt) + 1).to("cuda")
Some weights of the model checkpoint at distilbert-base-uncased were not used when initializing DistilBertForSequenceClassification: ['vocab_projector.bias', 'vocab_transform.bias', 'vocab_projector.weight', 'vocab_layer_norm.weight', 'vocab_transform.weight', 'vocab_layer_norm.bias']
- This IS expected if you are initializing DistilBertForSequenceClassification from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).
- This IS NOT expected if you are initializing DistilBertForSequenceClassification from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).
Some weights of DistilBertForSequenceClassification were not initialized from the model checkpoint at distilbert-base-uncased and are newly initialized: ['classifier.weight', 'pre_classifier.weight', 'classifier.bias', 'pre_classifier.bias']
You should probably TRAIN this model on a down-stream task to be able to use it for predictions and inference.

On défini la métrique d'évaluation

In [ ]:
from sklearn.metrics import accuracy_score

def compute_metrics(pred):
  labels = pred.label_ids
  preds = pred.predictions.argmax(-1)
  acc = accuracy_score(labels, preds)

  return {
      'accuracy': acc,
  }

On défni les argument de l'entrainement

In [ ]:
training_args = TrainingArguments(
    num_train_epochs=3,              # total number of training epochs
    per_device_train_batch_size=16,  # batch size per device during training
    per_device_eval_batch_size=20,   # batch size for evaluation
    learning_rate=5e-5,              # initial learning rate for Adam optimizer
    warmup_steps=100,                # number of warmup steps for learning rate scheduler (set lower because of small dataset size)
    weight_decay=0.01,               # strength of weight decay
    output_dir='./results',          # output directory
    logging_dir='./logs',            # directory for storing logs
    logging_steps=100,               # number of steps to output logging (set lower because of small dataset size)
    evaluation_strategy='steps',     # evaluate during fine-tuning so that we can see progress
)
In [ ]:
bert_trainer = Trainer(
    model=bert_clf_model,                      
    args=training_args,                  
    train_dataset=train_texts_dataset,         
    eval_dataset=test_texts_dataset,           
    compute_metrics=compute_metrics       
)

On entraine le modèle BERT

In [ ]:
bert_trainer.train()
/usr/local/lib/python3.7/dist-packages/transformers/optimization.py:310: FutureWarning: This implementation of AdamW is deprecated and will be removed in a future version. Use the PyTorch implementation torch.optim.AdamW instead, or set `no_deprecation_warning=True` to disable this warning
  FutureWarning,
***** Running training *****
  Num examples = 10000
  Num Epochs = 3
  Instantaneous batch size per device = 16
  Total train batch size (w. parallel, distributed & accumulation) = 16
  Gradient Accumulation steps = 1
  Total optimization steps = 1875
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:9: UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).
  if __name__ == '__main__':
[1875/1875 38:50, Epoch 3/3]
Step Training Loss Validation Loss Accuracy
100 0.565700 0.370032 0.834800
200 0.315900 0.283250 0.882800
300 0.302500 0.315860 0.884800
400 0.300300 0.350490 0.880000
500 0.299200 0.244296 0.904800
600 0.249600 0.292711 0.887600
700 0.181500 0.304129 0.906400
800 0.167000 0.392374 0.890000
900 0.159700 0.338305 0.904800
1000 0.154800 0.308881 0.910400
1100 0.136000 0.356924 0.903600
1200 0.171200 0.292335 0.909600
1300 0.113800 0.356132 0.912000
1400 0.052700 0.425024 0.906800
1500 0.057100 0.412860 0.912000
1600 0.099300 0.371894 0.912400
1700 0.067600 0.395746 0.910800
1800 0.060300 0.394630 0.910000

***** Running Evaluation *****
  Num examples = 2500
  Batch size = 20
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:9: UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).
  if __name__ == '__main__':
***** Running Evaluation *****
  Num examples = 2500
  Batch size = 20
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:9: UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).
  if __name__ == '__main__':
***** Running Evaluation *****
  Num examples = 2500
  Batch size = 20
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:9: UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).
  if __name__ == '__main__':
***** Running Evaluation *****
  Num examples = 2500
  Batch size = 20
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:9: UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).
  if __name__ == '__main__':
***** Running Evaluation *****
  Num examples = 2500
  Batch size = 20
Saving model checkpoint to ./results/checkpoint-500
Configuration saved in ./results/checkpoint-500/config.json
Model weights saved in ./results/checkpoint-500/pytorch_model.bin
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:9: UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).
  if __name__ == '__main__':
***** Running Evaluation *****
  Num examples = 2500
  Batch size = 20
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:9: UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).
  if __name__ == '__main__':
***** Running Evaluation *****
  Num examples = 2500
  Batch size = 20
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:9: UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).
  if __name__ == '__main__':
***** Running Evaluation *****
  Num examples = 2500
  Batch size = 20
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:9: UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).
  if __name__ == '__main__':
***** Running Evaluation *****
  Num examples = 2500
  Batch size = 20
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:9: UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).
  if __name__ == '__main__':
***** Running Evaluation *****
  Num examples = 2500
  Batch size = 20
Saving model checkpoint to ./results/checkpoint-1000
Configuration saved in ./results/checkpoint-1000/config.json
Model weights saved in ./results/checkpoint-1000/pytorch_model.bin
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:9: UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).
  if __name__ == '__main__':
***** Running Evaluation *****
  Num examples = 2500
  Batch size = 20
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:9: UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).
  if __name__ == '__main__':
***** Running Evaluation *****
  Num examples = 2500
  Batch size = 20
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:9: UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).
  if __name__ == '__main__':
***** Running Evaluation *****
  Num examples = 2500
  Batch size = 20
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:9: UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).
  if __name__ == '__main__':
***** Running Evaluation *****
  Num examples = 2500
  Batch size = 20
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:9: UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).
  if __name__ == '__main__':
***** Running Evaluation *****
  Num examples = 2500
  Batch size = 20
Saving model checkpoint to ./results/checkpoint-1500
Configuration saved in ./results/checkpoint-1500/config.json
Model weights saved in ./results/checkpoint-1500/pytorch_model.bin
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:9: UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).
  if __name__ == '__main__':
***** Running Evaluation *****
  Num examples = 2500
  Batch size = 20
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:9: UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).
  if __name__ == '__main__':
***** Running Evaluation *****
  Num examples = 2500
  Batch size = 20
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:9: UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).
  if __name__ == '__main__':
***** Running Evaluation *****
  Num examples = 2500
  Batch size = 20
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:9: UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).
  if __name__ == '__main__':


Training completed. Do not forget to share your model on huggingface.co/models =)


Out[ ]:
TrainOutput(global_step=1875, training_loss=0.1859624917348226, metrics={'train_runtime': 2331.4005, 'train_samples_per_second': 12.868, 'train_steps_per_second': 0.804, 'total_flos': 3974021959680000.0, 'train_loss': 0.1859624917348226, 'epoch': 3.0})

On évalue le modèle

In [ ]:
bert_trainer.evaluate()
***** Running Evaluation *****
  Num examples = 2500
  Batch size = 20
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:9: UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).
  if __name__ == '__main__':
[125/125 00:45]
Out[ ]:
{'epoch': 3.0,
 'eval_accuracy': 0.9124,
 'eval_loss': 0.39310315251350403,
 'eval_runtime': 46.3073,
 'eval_samples_per_second': 53.987,
 'eval_steps_per_second': 2.699}

Synthèse et discussion des résultats

Modèle Accuracy
{CountVertorizer + MultinomialNB} 0.86
{CountVertorizer + TF-IDF + MultinomialNB} 0.87
Stemming + {CountVertorizer + TF-IDF + MultinomialNB} 0.84
Stemming + Pos Tag Filter + {CountVertorizer + TF-IDF + MultinomialNB} 0.63
{DistilBERT} 0.912


En effet, le modèle {CountVertorizer + MultinomialNB} obtient des résultats très différent en fonction des hyperparamètres choisis pour CountVectorizer. Toutefois, grâce au fait que nous avons "fine-tuné" les hyperparamètres du modèle nous avons été en mesure de trouver la meilleure combinaison des hyperparamètres qui maximise la métrique de l'accuracy.

En utilisant les mêmes hyperparamètres du CountVertorizer du modèle précédent pour le modèle {CountVertorizer + TF-IDF + MultinomialNB}, nous avons obtenu une meilleure accuracy. En y ajoutant un modèle TF-IDF nous avons réussi à améliorer les représentations du `BoW.

Toutefois, sans grande surprise, on constate que le modèle BERT surclasse les autres modèles de classification.

In [ ]: